If I create table from impala, how can i make sure i create table in kudu? example from https://kudu.apache.org/docs/kudu_impala_integration.html#kudu_impala_create_table CREATE TABLE my_first_table ( id BIGINT, name STRING, PRIMARY KEY(id) ) PARTITION BY HASH PARTITIONS 16 STORED AS KUDU; If i try this statement in impala shell, sql errors out on "stored as":
"ERROR: AnalysisException: Syntax error in line 1: stored as kudu" Does it create table in hdfs and expects file format on "stored as", such as TEXTFILE? if so, how can i explicitly force it to create table in kudu? Thank you.