Create the Iceberg target table in Cloudera Data Warehouse

Learn how to create an Iceberg table for your data flow.

Before you can ingest data into your Cloudera Data Warehouse target in Cloudera on cloud, you need to create the table where you want to send data with NiFi. The following example shows how to create a table with Impala:
CREATE TABLE customer (id int, name string, created_at timestamp)
PARTITIONED BY (country_code string)
STORED BY ICEBERG;