-
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 G.4X and G.8X worker types for AWS Glue #25637
Merged
Changes from 7 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
41721b1
Add G.4X and G.8X worker types for AWS Glue
racc 36ab45d
Update unit test to add new worker types
racc 709995a
Remove trailing space
racc 33878a1
Update readme and integration tests
racc 9f816fe
Update snapshot
racc 8dbefa1
Add updated snapshot
racc d71d5b0
Fix readme
racc 011672b
Add G.4X and G.8X worker types for AWS Glue
racc 068d178
Update unit test to add new worker types
racc 54e7da8
Remove trailing space
racc 2439319
Update readme and integration tests
racc bc8eb4a
Update snapshot
racc c58a332
Add updated snapshot
racc 8783650
Fix readme
racc 925641a
Merge branch 'main' into main
racc e527967
Update following review
racc 45fb79c
Merge branch 'main' of https://github.com/racc/aws-cdk
racc f87ee95
Add comma back following review
racc 680df85
Merge branch 'main' into main
racc 3ef5ed3
Merge branch 'main' into main
mergify[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ const script = glue.Code.fromAsset(path.join(__dirname, 'job-script/hello_world. | |
glueVersion, | ||
script, | ||
}), | ||
workerType: glue.WorkerType.G_2X, | ||
workerType: glue.WorkerType.G_8X, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why make the tests 4x as expensive? |
||
workerCount: 10, | ||
maxConcurrentRuns: 2, | ||
maxRetries: 2, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
These kinds of commas are not typos, it makes it easier to extend without having to worry if it's the last line or higher up.