Created 06-03-2017 12:34 PM
Hi,
I am trying to do a POC using following link https://kudu.apache.org/docs/quickstart.html
When I am trying to create a table in Impala with Kudu as storage I am getting following error, any ideas
ERROR: AnalysisException: Table property 'kudu.master_addresses' is required when the impalad startup flag -kudu_master_hosts is not used.
Regards
Created 06-04-2017 08:25 AM
In your DDL, in your TBLPROPERTIES section, add a line for the master addresses like this:
TBLPROPERTIES( 'storage_handler' = 'com.cloudera.kudu.hive.KuduStorageHandler', 'kudu.table_name' = <tablename>, 'kudu.master_addresses' = '<host.abc.com:port>' );