How to include lifecycle configuration in Sagemaker studio's user notebook
I want to use lifecycle configuration in Sagemaker studio so that on start of user's notebook it runs the given lifecycle configuration.
My lifecycle configuration will have shell script which will launch cronjob having python script to send attached notebook's running duration.
#!/bin/bash
set -e
# PARAMETERS
IDLE_TIME=120
echo Fetching the autostop script
aws s3 cp s3://testing-west2/duration-check.py .
aws s3 cp s3://testing-west2/on-start.sh .
echo Starting the SageMaker autostop script in cron
(crontab -l 2/dev/null; echo */1 * * * * /bin/bash -c '/usr/bin/python3 $DIR/duration-check.py --time ${IDLE_TIME} | tee -a /home/ec2-user/SageMaker/auto-stop-idle.log') | crontab -
echo Changing cloudwatch configuration
cat $DIR/on-start.sh | sudo bash -s auto-stop-idle /home/ec2-user/SageMaker/auto-stop-idle.log
Referred lifecycle configuration from here: https://github.com/aws-samples/amazon-sagemaker-notebook-instance-lifecycle-config-samples/tree/master/scripts/auto-stop-idle
Topic sagemaker data-science-model aws
Category Data Science