Member since
02-02-2023
2
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1342 | 02-06-2023 06:07 AM |
02-06-2023
06:07 AM
going to answer myself. as of hive3, its not yet possible to directly bulk load external datasets (e.g. parquet / orc) files. so its necessary to do the following. create temporary managed hive table LOAD DATA INPATH the parquet / orc / csv into the temporary managed hive table create external table as iceberg. Select * and copy into the external iceberg table this has worked with the following iceberg features. write, append, time-travel
... View more