nobody be9f5e9ce4 fix: 调整节点数据 | il y a 2 ans | |
---|---|---|
builder | il y a 2 ans | |
buildutils | il y a 2 ans | |
dag @ ea8995b3b8 | il y a 2 ans | |
design | il y a 4 ans | |
dev_mode | il y a 2 ans | |
docker | il y a 2 ans | |
docker_build | il y a 2 ans | |
docker_jupyterhub | il y a 2 ans | |
docs | il y a 2 ans | |
galata | il y a 2 ans | |
images | il y a 2 ans | |
jupyter-config | il y a 4 ans | |
jupyterlab | il y a 2 ans | |
packages | il y a 2 ans | |
scripts | il y a 2 ans | |
sparkmagic @ b52dfe740e | il y a 2 ans | |
testutils | il y a 2 ans | |
typedoc-theme | il y a 3 ans | |
.bumpversion.cfg | il y a 2 ans | |
.cleanignore | il y a 4 ans | |
.dockerignore | il y a 3 ans | |
.eslintignore | il y a 3 ans | |
.eslintrc.js | il y a 2 ans | |
.git-blame-ignore-revs | il y a 2 ans | |
.gitattributes | il y a 6 ans | |
.gitignore | il y a 2 ans | |
.gitmodules | il y a 2 ans | |
.gitpod.yml | il y a 3 ans | |
.meeseeksdev.yml | il y a 6 ans | |
.pre-commit-config.yaml | il y a 2 ans | |
.prettierignore | il y a 3 ans | |
.prettierrc | il y a 4 ans | |
.yarnrc | il y a 6 ans | |
Dockerfile | il y a 2 ans | |
Dockerfile.combined | il y a 2 ans | |
LICENSE | il y a 2 ans | |
MANIFEST.in | il y a 2 ans | |
README.md | il y a 2 ans | |
Untitled.ipynb | il y a 2 ans | |
about_dev.md | il y a 2 ans | |
about_diff.md | il y a 2 ans | |
bdist_wheel.sh | il y a 2 ans | |
clean.py | il y a 2 ans | |
conftest.py | il y a 2 ans | |
lerna.json | il y a 6 ans | |
package.json | il y a 2 ans | |
postcss.config.js | il y a 2 ans | |
pyproject.toml | il y a 2 ans | |
setup.cfg | il y a 2 ans | |
setup.py | il y a 2 ans | |
tsconfig.eslint.json | il y a 3 ans | |
tsconfigbase.json | il y a 4 ans | |
tsconfigbase.test.json | il y a 4 ans | |
tsconfigdoc.json | il y a 2 ans | |
typedoc.js | il y a 3 ans | |
untitled.dag | il y a 2 ans | |
yarn.lock | il y a 2 ans |
JupyterLab 是 Jupyter 项目提供的强大的 Notebook 编程界面, 可以通过其插件系统进行扩展. 本项目 fork 自 https://github.com/jupyterlab/jupyterlab, 在官方代码的基础上进行二次开发, 通过 Sparkmagic 连接 Livy 提供 Spark 编程及 HDFS 访问, 并提供数据资产管理, 可视化编程, 定时任务等功能.
项目提供了构建 Docker 镜像的 Dockerfile
# 使用 recursive 克隆 sparkmagic
git clone --recursive http://gogsb.soaringnova.com/ylproj/jupyterlab.git
# 构建镜像
docker build -f Dockerfile.combined -t ylproj-jupyter .
使用如下命令运行构建好的镜像:
docker run -d \
--name ylproj-jupyter \
--network ylproj \
-p 8000:8000 \
-v <kerberos配置>:/etc/krb5.conf:ro \
-v <hadoop配置>:/opt/cluster/conf:ro \
-e LIVY_SERVER_URL=http://livy:8998/ \
-e BACKEND_BASE_URL=http://backend:5000/ \
ylproj-jupyter
运行参数说明:
LIVY_SERVER_URL
指向 Livy 服务的地址BACKEND_BASE_URL
指向 Backend 服务的地址service | port |
---|---|
JupyterHub Web | 8000 |
Backend REST | 5000 |
Livy REST | 8998 |
Livy RPC | 31100-31103 |
Livy RPC (Yarn) | 31100-31103 |
HDFS | 4007, 4008 |
ResourceManager | 5000, 5004 |
NodeManager | 5006, 5008 |
KDC | 88 |
Hive Metastore (thrift) | 7004 |
Hive Server2 | 7001 |