Creating an insert-only transactional table
You can create a transactional table using any storage format if you do not require update and delete capability. This type of table has ACID properties, is a managed table, and accepts insert operations only.
In this task, you create an insert-only transactional table for storing
data in the default storage format of your SQL engine.. In Hive, setting
'transactional'='true','transactional_properties'='insert_only'
in table properties when creating the table is required; otherwise, a CRUD table
results. In Impala, these table properties are set by default..
In Hive, the default storage format is ORC (Optimized Row Columnar). In Impala, the default storage format is Parquet. Use the STORED AS clause is optional if you want to specify a different format.