Member since
01-13-2022
8
Posts
1
Kudos Received
0
Solutions
06-17-2024
07:30 AM
Hi @EFasdfSDfaSDFG From Hive the following formats supported : Parquet (default), Avro, ORC Create table examples: CREATE EXTERNAL TABLE test_ice_1 ( i INT, t TIMESTAMP, j BIGINT) STORED BY ICEBERG; CREATE EXTERNAL TABLE test_ice_2 (i INT, t TIMESTAMP) PARTITIONED BY (j BIGINT) STORED BY ICEBERG; CREATE EXTERNAL TABLE test_ice_3 (i int) STORED AS ORC STORED BY ICEBERG LOCATION ''; CREATE EXTERNAL TABLE test_ice_4 (i int) STORED BY ICEBERG TBLPROPERTIES ('key'='value', 'key'='value') CREATE EXTERNAL TABLE test_ice_1 (i int) STORED AS ORC STORED BY ICEBERG TBLPROPERTIES ('format-version' = '2');
... View more
03-20-2024
01:05 PM
1 Kudo
@EFasdfSDfaSDFG Took sometime to do a feasibility study and found a couple of things from our Internal resources. 1. FYI: The native Ozone REST API is completely superseded by the S3 REST API. Therefore, there is no native REST API to manage Ozone. 2. Since I am unsure of your Use-case, I would suggest you test this either by Java API or HttpFS Gateway Interface.[0a] [0a]https://ozone.apache.org/docs/1.4.0/interface.html HTH. If you find this answering your question, Please mark this as Accept as Solution. Also, You may thank me by clicking the thumbs-up! Cheers!
... View more