Apache X table with Snowflake and glue #571
Replies: 2 comments 1 reply
-
@soumilshah1995 since Iceberg is the source, it is required to already be in the Glue Catalog for Iceberg. Can you validate that the naming matches? |
Beta Was this translation helpful? Give feedback.
-
Hi there,
After creating the table, I ran a sync command to build the metadata in Snowflake using the following command:
Now, I want to perform a second sync to register this metadata in AWS Glue without needing to run the Glue crawlers. The table was created in Snowflake as a managed Iceberg table, and I initially used snowflake_catalog.yaml and config.yaml to set up the metadata.
My question: Is it possible to run the second sync to register the metadata in Glue directly using these files without triggering Glue crawlers? OR catalog.template.yaml
glue_catalog_sync.yaml
Can I run Both together ? is there a way to sync to multiple catalog ? Thank you! |
Beta Was this translation helpful? Give feedback.
-
I am able to sync items from snowflake and build metadata for other table formats
CMD ["java", "-cp", "iceberg-spark-runtime-3.3_2.12-1.4.2.jar:xtable-utilities-0.1.0-SNAPSHOT-bundled.jar:snowflake-jdbc-3.13.28.jar:iceberg-aws-1.4.2.jar:bundle-2.23.9.jar", "org.apache.xtable.utilities.RunSync", "--datasetConfig", "config.yaml", "--icebergCatalogConfig", "snowflake_catalog.yaml"]
Now I want to sync with glue catalog
glue_config.yaml
glue_catalog_sync.yaml
CMD ["java", "-cp", "iceberg-spark-runtime-3.3_2.12-1.4.2.jar:xtable-utilities-0.1.0-SNAPSHOT-bundled.jar:snowflake-jdbc-3.13.28.jar:iceberg-aws-1.4.2.jar:bundle-2.23.9.jar", "org.apache.xtable.utilities.RunSync", "--datasetConfig", "glue_config.yaml", "--icebergCatalogConfig", "glue_catalog_sync.yaml"]
question I dont want to use glue crawler can I do so using above ?
Beta Was this translation helpful? Give feedback.
All reactions