gpt4 book ai didi

aws-cloudformation - AWS CDK Glue 作业 + 触发器已创建但无法运行

转载 作者:行者123 更新时间:2023-12-03 07:29:20 24 4
gpt4 key购买 nike

我在 TypeScript 中有以下 AWS CDK 配置(缩写):

const jobProps = {
command: {
name: 'glueetl',
pythonVersion: '3',
scriptLocation: `s3://${s3bucket.bucketName}/${this.scriptName}`,
},
connections: { connections: [connectionName] },

defaultArguments: { },
description: idEnv + '-job',
executionProperty: {
maxConcurrentRuns: 1,
},
glueVersion: '2.0',
maxRetries: 0,
name: idEnv + '-job',
numberOfWorkers: 2,
role: glueServiceRole.roleArn,
timeout: 180, // minutes
workerType: 'Standard',
};
const job = new CfnJob(this, idEnv, jobProps);


const trigger = new CfnTrigger(this, idEnv + '-trigger', {
type: 'SCHEDULED',
description: 'Scheduled run for ' + job.name,
schedule: this.JOB_SCHEDULE,
actions: [
{
jobName: job.name,
},

],
});

触发器已创建,可以在控制台中看到,并且已链接到作业。但它就是无法运行(手 Action 业运行就可以)。我错过了什么?

最佳答案

您需要将“startOnCreation: true”添加到 CfnTrigger 属性中,以便默认启用触发器状态。

关于aws-cloudformation - AWS CDK Glue 作业 + 触发器已创建但无法运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65323076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com