1 回答
- 最新
- 投票最多
- 评论最多
0
【以下的回答经过翻译处理】 通过更新脚本的S3位置,您只会在S3中创建新版本的代码。如果要完全替换Glue中的代码,则必须使用boto3更新Glue任务中新脚本的位置 -< https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/glue.html#Glue.Client.update_job>。这不会重置任何其他参数。
response = client.update_job({
"JobName": "string",
"JobUpdate": {
"Command": {
"Name": "string",
"PythonVersion": "string",
"ScriptLocation": "string"
}
}
})
相关内容
- AWS 官方已更新 1 年前
- AWS 官方已更新 2 年前
- AWS 官方已更新 1 年前