You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Apache Hive starting from 4.0 out of the box supports the Iceberg table format, the iceberg tables can be created like regular hive external or ACID tables, without the need of any need of adding any extra jars.


Creating an Iceberg Table

An iceberg table can be created using STORED BY ICEBERG keywords while creating a table.

example

CREATE TABLE TABLE1 (ID INT) STORED BY ICEBERG
  • No labels