-
Notifications
You must be signed in to change notification settings - Fork 15
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
Hive Metastore Client Cataloging for Delta #61
Comments
Hi @asafepy, thank you for opening this issue! I see that Hive provides this STORED BY clause in its syntax, but after some diving into the code, I did not find any reference for the "STORED BY" clause in the Hive Metastore objects provided by the Thrift mapping. My guess: or this is not supported by the Hive Metastore Server yet, or we should apply this clause in some different way. For example, maybe you could try using the |
If anyone comes across this issue as well, this is how I was able to create a table that uses delta:
|
Hi guys, we here at CVCCorp have a limitation for Hive cataloging regarding Delta data.
This would be an example of what the cataloging model for data in Delta should look like.
CREATE EXTERNAL TABLE table_teste(
tabela STRING,
data_update STRING,
count BIGINT)
STORED BY 'io.delta.hive.DeltaStorageHandler'
LOCATION 's3://bucket-name/example/table_teste/';
Our motivations in using data in Delta are because we use Databricks and our Benchmark, Delta has better performance.
We also centralized all metadata in a Hive Cluster for integration with Databricks.
Any questions I will be in contact with Lucas on LinkedIn.
The text was updated successfully, but these errors were encountered: