有没有办法将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)
5.16不支持
5.17允许通过添加此配置分类
[
{
"Classification": "jupyter-s3-conf",
"Properties": {
"s3.persistence.enabled": "true",
"s3.persistence.bucket": "MyJupyterBucket"
}
}
]