Create the Iceberg target table in CDW

Before you can ingest data into your Cloudera DataWarehouse (CDW) target in CDP Public Cloud, make sure that the table where you want to send data with NiFi is already created before you build your data flow.

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;