-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(glue): add ExecutionClass for FLEX #26203
Conversation
if (executable.type !== JobType.ETL) { | ||
throw new Error('FLEX ExecutionClass is only available for JobType.ETL jobs'); | ||
} | ||
if ([GlueVersion.V0_9, GlueVersion.V1_0, GlueVersion.V2_0].includes(executable.glueVersion)) { | ||
throw new Error('FLEX ExecutionClass is only available for GlueVersion 3.0 or later'); | ||
} | ||
if (props.workerType && (props.workerType !== WorkerType.G_1X && props.workerType !== WorkerType.G_2X)) { | ||
throw new Error('FLEX ExecutionClass is only available for WorkerType G_1X or G_2X'); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this page, the following.
Only jobs with AWS Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
In this page, the following.
Flexible job runs are supported for jobs using AWS Glue version 3.0 or later and G.1X or G.2X worker types.
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
This PR adds ExecutionClass for Glue job's L2 construct. This allows you to specify
FLEX
option.Closes #22224
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license