ORC is an efficient column storage format and has higher compression ratio and reading efficiency than other file formats.
You are advised to use ORC as the default Hive table storage format.
You have logged in to the Hive client. For details, see Using a Hive Client.
Create table xx (col_name data_type) stored as orc tblproperties ("orc.compress"="SNAPPY");
Create table xx (col_name data_type) stored as orc tblproperties ("orc.compress"="ZLIB");
xx indicates the specific Hive table name.