Nessuna descrizione

zeke-chin 6783f3c49f update 2 anni fa
builder 2be6f2eb9f [ci skip] New version 2 anni fa
buildutils a272515aee 添加Docker镜像构建 2 anni fa
design d7a9358062 Fix a few more typos 4 anni fa
dev_mode 6b4a77a893 去除pre-commit 2 anni fa
docker 6783f3c49f update 2 anni fa
docker_build 195a298012 完善jupyterhub镜像构建 2 anni fa
docker_jupyterhub adc9448a19 更新Dockerfile 2 anni fa
docs f0a6c4f6a7 Backport PR #12635: Add more explanation for internationalization (translation python package) (#12648) 2 anni fa
galata 2be6f2eb9f [ci skip] New version 2 anni fa
jupyter-config 678646cec1 enable jupyterlab to work as a classic notebook extension and fix handling of binder 4 anni fa
jupyterlab 7746b1f158 完善构建流程 2 anni fa
packages 6b4a77a893 去除pre-commit 2 anni fa
scripts cde0521528 [3.3.x] Run black (#12282) 3 anni fa
sparkmagic @ 3bd0925675 a272515aee 添加Docker镜像构建 2 anni fa
testutils 2be6f2eb9f [ci skip] New version 2 anni fa
typedoc-theme c3048d1dd1 Replaced ... with ellipses unicode character in .ts files (#10208) 3 anni fa
.bumpversion.cfg af732d8125 [ci skip] Publish 3.4.3 2 anni fa
.cleanignore 2de04f2c37 implemented fallback arg for LabIcon.resolveX methods 5 anni fa
.dockerignore 18f953fe43 Backport PR #10796 to 3.2.x: Add Galata in JupyterLab (#11179) 3 anni fa
.eslintignore 18f953fe43 Backport PR #10796 to 3.2.x: Add Galata in JupyterLab (#11179) 3 anni fa
.eslintrc.js e6fbbe2e6f 添加yili的新UI 2 anni fa
.git-blame-ignore-revs 1d76e3c443 [3.3.x] Add git-blame-ignore-revs file (#12289) 3 anni fa
.gitattributes 2a3bc70c04 Upgrade to yarn 1.5.1 7 anni fa
.gitignore 8630063321 Backport PR #10299: Add debugger variable renderer based on mime type (#11871) 3 anni fa
.gitmodules bafcf4bbec update 2 anni fa
.gitpod.yml 757a1c3a38 dont open in browser 4 anni fa
.meeseeksdev.yml f2afcc5aad Add meessekdev bot config file 6 anni fa
.pre-commit-config.yaml 6b4a77a893 去除pre-commit 2 anni fa
.prettierignore 18f953fe43 Backport PR #10796 to 3.2.x: Add Galata in JupyterLab (#11179) 3 anni fa
.prettierrc 4ee83bd2b2 Lint - updates from the new version of prettier. 4 anni fa
.yarnrc b513457b01 Update lerna (#5262) 6 anni fa
Dockerfile 195a298012 完善jupyterhub镜像构建 2 anni fa
Dockerfile.combined adc9448a19 更新Dockerfile 2 anni fa
LICENSE a272515aee 添加Docker镜像构建 2 anni fa
MANIFEST.in c12bea95c1 Backport PR #11388: Set default ui font to `system-ui` (#11927) 3 anni fa
README.md e64bf200b5 更新README 2 anni fa
bdist_wheel.sh 81774cbab2 完善构建脚本 2 anni fa
clean.py cde0521528 [3.3.x] Run black (#12282) 3 anni fa
conftest.py cde0521528 [3.3.x] Run black (#12282) 3 anni fa
lerna.json b513457b01 Update lerna (#5262) 6 anni fa
package.json a272515aee 添加Docker镜像构建 2 anni fa
postcss.config.js c617b40ce5 Backport PR #11552: postcss 8.4.0 breaks integrity 2 CI test (#11560) 3 anni fa
pyproject.toml 7746b1f158 完善构建流程 2 anni fa
setup.cfg eaa0de0a68 Backport PR #12250: Open terminal in cwd from launcher (#12430) 3 anni fa
setup.py 7746b1f158 完善构建流程 2 anni fa
tsconfig.eslint.json 18f953fe43 Backport PR #10796 to 3.2.x: Add Galata in JupyterLab (#11179) 3 anni fa
tsconfigbase.json df0b0f7438 Turn on strict null checks (except for services) 5 anni fa
tsconfigbase.test.json cdb5b99a88 Convert jest imports to typescript type references. 4 anni fa
tsconfigdoc.json 6b4a77a893 去除pre-commit 2 anni fa
typedoc.js 18f953fe43 Backport PR #10796 to 3.2.x: Add Galata in JupyterLab (#11179) 3 anni fa
yarn.lock 7746b1f158 完善构建流程 2 anni fa

README.md

JupyterLab

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/ \
       ylproj-jupyter

运行参数说明:

  • 用户访问端口 8000 的 web 服务 (http://localhost:8000/jupyterhub)
  • 环境变量 LIVY_SERVER_URL 指向 Livy 服务的地址
  • /etc/krb5.conf 是 Kerberos 的配置文件
  • /opt/cluster/conf 是 Hadoop 相关的配置文件以及 Kerberos 的 keytab