AWS:用于创建 Glue jupyter notebook 和开发端点的 cloudformation

AWS: cloudformation to create Glue jupyter notebook and dev endpoint

查看云形成文档,我看不到启动 Glue DevEndpoint、Jupyter 笔记本并让笔记本使用新创建的 DevEndpoint 的方法。

有人可以帮忙吗?

您可以使用 AWS::Glue::DevEndpoint 创建开发端点。不幸的是,到目前为止,现在可以使用 CloudFormation 创建连接到端点的笔记本服务器。唯一的方法是通过 AWS Glue 控制台...

我找到了解决方案,关键是使用云形成对象 AWS::SageMaker::NotebookInstanceLifecycleConfig 挂接到笔记本 OnStart 和 OnCreate 笔记本事件。

可以在 SageMaker 中找到在控制台的 Glue 部分创建的笔记本,您可以在其中看到关联的 LifecycleConfig 资源及其代码。

为了完整了解此问题,请参阅下面的代码,当您从 Glue 创建 Jupyter notebook 时,目前用于 OnStart 和 OnCreate 的代码。

请注意,通过使用此方法,新创建的笔记本具有通过控制台创建的笔记本的确切功能,但它只会在控制台的 SageMaker 部分可见。

#!/bin/bash
set -ex
[ -e /home/ec2-user/glue_ready ] && exit 0

mkdir -p /home/ec2-user/glue
cd /home/ec2-user/glue

# Write dev endpoint in a file which will be used by daemon scripts
glue_endpoint_file="/home/ec2-user/glue/glue_endpoint.txt"

if [ -f $glue_endpoint_file ] ; then
    rm $glue_endpoint_file
fi
echo "https://glue.eu-west-2.amazonaws.com" >> $glue_endpoint_file

ASSETS=s3://aws-glue-jes-prod-eu-west-2-assets/sagemaker/assets/

aws s3 cp ${ASSETS} . --recursive

bash "/home/ec2-user/glue/Miniconda2-4.5.12-Linux-x86_64.sh" -b -u -p "/home/ec2-user/glue/miniconda"

source "/home/ec2-user/glue/miniconda/bin/activate"

tar -xf autossh-1.4e.tgz
cd autossh-1.4e
./configure
make
sudo make install
sudo cp /home/ec2-user/glue/autossh.conf /etc/init/

mkdir -p /home/ec2-user/.sparkmagic
cp /home/ec2-user/glue/config.json /home/ec2-user/.sparkmagic/config.json

mkdir -p /home/ec2-user/SageMaker/Glue\ Examples
mv /home/ec2-user/glue/notebook-samples/* /home/ec2-user/SageMaker/Glue\ Examples/

# ensure SageMaker notebook has permission for the dev endpoint
aws glue get-dev-endpoint --endpoint-name somiron-dfe-poc-GlueDevEndpoint --endpoint https://glue.eu-west-2.amazonaws.com

# Run daemons as cron jobs and use flock make sure that daemons are started only iff stopped
(crontab -l; echo "* * * * * /usr/bin/flock -n /tmp/lifecycle-config-v2-dev-endpoint-daemon.lock /usr/bin/sudo /bin/sh /home/ec2-user/glue/lifecycle-config-v2-dev-endpoint-daemon.sh") | crontab -

(crontab -l; echo "* * * * * /usr/bin/flock -n /tmp/lifecycle-config-reconnect-dev-endpoint-daemon.lock /usr/bin/sudo /bin/sh /home/ec2-user/glue/lifecycle-config-reconnect-dev-endpoint-daemon.sh") | crontab -

source "/home/ec2-user/glue/miniconda/bin/deactivate"

rm -rf "/home/ec2-user/glue/Miniconda2-4.5.12-Linux-x86_64.sh"

sudo touch /home/ec2-user/glue_ready