Spencer Sutton
Spencer Sutton

Reputation: 3397

What CloudWatch events will trigger a Glue job to start?

I have a series of Glue jobs that depend on data in S3 that gets dumped there by a separate DMS job. I have that DMS job running from a cron job on an EC2 instance. All of Glue's trigger functionality seems to concern itself with just Glue jobs. Is there a CloudWatch event that will trigger a Glue job? I know I can get CloudWatch to recognize when DMS finishes successfully and if I can get a Glue job to trigger from CloudWatch I'll be able to string it all together.

Upvotes: 1

Views: 2140

Answers (1)

Yuriy Bondaruk
Yuriy Bondaruk

Reputation: 4750

Currently CloudWatch doesn't support AWS Glue job as a target for Rules.

Alternatively you can setup a Rule to trigger Lambda on the DMS event which will start an ETL job by calling Glue API

Upvotes: 3

Related Questions