Iceberg Catalog options for metadata and glue name validation #475
Unanswered
prasanna-ds
asked this question in
Q&A
Replies: 1 comment 4 replies
-
@prasanna-ds this is likely a bug in the catalog implementation. We're just using the existing libraries and passing in the args here |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I am using XTable to convert the table format from Delta to Iceberg. While building the IcebergCatalogConfig, I pass a Catalog Option
table-override.write.metadata.path
to write the metadata to a different location apart from the base table. It works perfectly fine. Now, I have a scenario where we have special characters such as space, +, backticks in the table schema, and the metadata conversion fails because of glue data catalog validation error.Upon some research, I learned that we can skip the validation using
glue.skip-name-validation
. So, I also tried passing this config in the Catalog Options and ended up with the same validation error. However, when I set only one of these configs they work perfectly fine but not together.Could you please help me if I am missing something? or is it probably a bug?
Code (does not work):
Beta Was this translation helpful? Give feedback.
All reactions