This screenshot shows the three FQDNs, oversimplified for
readability.
Click Apply Changes.
When the Virtual Warehouse finishes updating, you can query Kudu tables from
Hue, an Impala shell, or an ODBC/JDBC client. For example:
--- First, create an example table
CREATE TABLE my_first_kudu_table
(
id BIGINT,
name STRING,
PRIMARY KEY(id)
)
PARTITION BY HASH PARTITIONS 16
STORED AS KUDU;
--- Next, insert some example data
INSERT INTO my_first_kudu_table VALUES (101,'A'),(102,'B'),(103,'C');
--- Finally, select from the example table to show the above has worked
SELECT * FROM my_first_kudu_table;