Add GlueCatalogCreateDatabaseOperator#65977
Merged
vincbeck merged 1 commit intoapache:mainfrom Apr 28, 2026
Merged
Conversation
vincbeck
reviewed
Apr 27, 2026
faa5579 to
75764ad
Compare
vincbeck
reviewed
Apr 27, 2026
75764ad to
b40e776
Compare
- New operator to create databases in the AWS Glue Data Catalog - Supports description, location_uri, parameters, catalog_id, and tags - Uses AwsBaseOperator[AwsBaseHook] pattern (no custom hook) - Unit tests, system test, and docs included - provider.yaml and get_provider_info.py updated
b40e776 to
e67b7dd
Compare
vincbeck
approved these changes
Apr 28, 2026
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 a new operator for managing databases in the AWS Glue Data Catalog.
The Glue Data Catalog is the centralized metadata repository used by Athena, Redshift Spectrum, EMR, and Lake Formation. Currently there are no operators for catalog database management — users must use PythonOperator with raw boto3 calls.
How
GlueCatalogCreateDatabaseOperatorusingAwsBaseOperator[AwsBaseHook]pattern (no custom hook)description,location_uri,parameters,catalog_id, andtagsFiles
operators/glue_catalog.py— operatortest_glue_catalog.py— unit tests (3 tests)example_glue_catalog.py— system testglue_catalog.rst— docsprovider.yaml+get_provider_info.py— updatedTesting