Add GlueCatalogCreateTableOperator#66362
Merged
vincbeck merged 1 commit intoapache:mainfrom May 4, 2026
Merged
Conversation
2f69e69 to
d4c0189
Compare
vincbeck
reviewed
May 4, 2026
Contributor
vincbeck
left a comment
There was a problem hiding this comment.
Please check which files are being committed before creating the PR
vincbeck
reviewed
May 4, 2026
Contributor
vincbeck
left a comment
There was a problem hiding this comment.
Please check which files are being committed before creating the PR
ba724dc to
906103c
Compare
Contributor
|
Static checks are failing |
906103c to
444e8a7
Compare
vincbeck
reviewed
May 4, 2026
18606ad to
5c2dee9
Compare
5c2dee9 to
5e11189
Compare
vincbeck
approved these changes
May 4, 2026
79 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What
Add
GlueCatalogCreateTableOperatorto create tables in AWS Glue Data Catalog databases.Why
Tables are the most commonly used Glue Catalog resource in data pipelines — defining schema for Athena queries, Spark jobs, and ETL workflows. This extends the existing database operators to cover the full catalog hierarchy (database → table).
What was done
GlueCatalogCreateTableOperatorwithif_existsidempotency,table_inputfor schema definition, optionalcatalog_id. Added to existingglue_catalog.py.test_glue_catalog.py— happy path, skip-existing, fail-on-conflict, template fieldsexample_glue_catalog.py— added table creation between database create/deleteglue_catalog.rstwith new section