英文:
how to stop processing jobs sagemaker?
问题
我有一个问题
最近我使用Sagemaker处理我的作业,其中有一些处理作业在历史记录中显示为“完成”状态,我该如何停止这些作业?
我使用了命令aws sagemaker stop-processing-job --processing-job-name
,但它没有按照我预期的方式工作,当我运行它时出现了以下消息:
请求被拒绝,因为处理作业处于完成状态。
我需要停止作业处理,因为这可能会花费我的费用。
英文:
I have a problem
Recently I used sagemaker to process my jobs, with that, there were some processing jobs in the history with "Complete" status, how do I stop these jobs?
I used the command aws sagemaker stop-processing-job --processing-job-name
and it didn't work the way I expected, the following message appeared when I ran it
> The request was rejected because the processing job is in status Completed.
I need to stop job processing because it is probably costing me
答案1
得分: 1
你无法停止一个(非活动的)处理作业,因为它已经处于“已完成”状态。
为了释放资源以避免任何相关费用,请尝试使用以下命令删除处理作业:
aws sagemaker delete-processing-job --processing-job-name my-processing-job
注意:这将删除该作业创建的任何资源,如S3存储桶/对象。
英文:
You can't stop an (inactive) processing job because its already Completed
.
To free up resources for avoiding any associated cost, try deleting the processing job with:
aws sagemaker delete-processing-job --processing-job-name my-processing-job
Note: It will delete any resources created by this job like S3 bucket/object(s).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论