Is it possible to transfer Jupyter notebook instance to a different region?

0

While learning about Deep Racer, I have by mistake chosen region as Oregon. It appears that Deep Racer will work only on N.Virginia. Enter image description here

Is it possible to transfer this notebook instance to N.Virginia or do I need to start fresh with N.Virginia.

profile picture
已提问 2 年前1771 查看次数
2 回答
1
已接受的回答

Hi! I'm afraid you will have to set up a new instance in another region. You can download your Jupyter Notebooks and import them in the new instance.

AWS
Dani M
已回答 2 年前
profile picture
专家
已审核 15 天前
0

Amazon SageMaker Notebook instances are managed instances that at this time you cannot move between regions. However, you can copy your data between notebooks using S3. To do this, select your notebook instance on the screen you showed, it will take you to a detailed view. In that view you will see a section called Permissions and encryption, the section has a link to the IAM policy of the notebook. Follow that link to IAM, and ensure that your notebook has access to an S3 bucket. You will have to create a bucket before granting access.

To do this follow the instructions here. Provide permissions in IAM, as defined here.

Once your Notebook role has access to the bucket you specify, you can launch your notebook and copy all your files to that bucket as follows. Open the Notebook, by pressing Open Jupyter. From the dropdown on the top right of the Jupyter environment select New followed by Terminal in the dropdown. You can then use the AWS command line to copy the files, specifically aws s3 cp. To do this from the terminal:

aws s3 cp . s3://[your bucket name] --recursive

This will copy all your files to the S3 bucket. Then in your new bucket located in us-east-1, setup the notebook with the same S3 permissions, and copy the files from S3 back to your new instance using the following command:

aws s3 cp s3://[your bucket name] . --recursive

Once you have copied all the files, you can delete the old notebook.

AWS
Jason_N
已回答 2 年前
profile picture
专家
已审核 6 天前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容