“Hive HBase erstellen externe Tabelle” Code-Antworten

So erstellen Sie eine externe Tabelle im Bienenstock

create external table if not exists [external-table-name] (
[column1-name] [column1-type], [column2-name] [column2-type], …)
comment '[comment]'
row format [format-type]
fields terminated by '[termination-character]'
stored as [storage-type]
location '[location]';
Asif Iqbal Paracha

Hive HBase erstellen externe Tabelle

CREATE EXTERNAL TABLE <hive_table_name>(key string,
col1 string, col2 string, col3 string
)
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES ("hbase.columns.mapping" =
":key,
cf:col1,
cf:col2,
cf:col3
")
TBLPROPERTIES("hbase.table.name" = "<hbase_table_name>", "hbase.mapred.output" = "<hbase_table_name>");
Rey Luar Jr.

Ähnliche Antworten wie “Hive HBase erstellen externe Tabelle”

Fragen ähnlich wie “Hive HBase erstellen externe Tabelle”

Weitere verwandte Antworten zu “Hive HBase erstellen externe Tabelle” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen