在emr 5.16上将jupyterhub notebook_dir设置为s3

问题描述 投票:0回答:1

有没有办法将notebook-dir重定向到EMR-Cluster的JSON配置文件中的s3,以启动集群。我使用以下分类:“jupyter-notebook-conf”并设置以下选项:c.NotebookApp.notebook_dir“s3:// [bucket] / path”

这会创建配置文件:“/etc/jupyter/jupyter_notebook_config.py”与给定的条目,但没有成功。

之前我可以在手动安装jupyterhub时​​使用选项--notebook-dir,但现在我尝试使用EMR-Cluster的预安装jupyterhub服务(参见:Run Jupyter Notebook and JupyterHub on Amazon EMR

amazon-web-services amazon-s3 amazon-emr jupyterhub
1个回答
0
投票

5.16不支持

5.17允许通过添加此配置分类

[
    {
        "Classification": "jupyter-s3-conf",
        "Properties": {
            "s3.persistence.enabled": "true",
            "s3.persistence.bucket": "MyJupyterBucket"
        }
    }
]
© www.soinside.com 2019 - 2024. All rights reserved.