我想讲es中的数据导入hive,所有配置都弄好了 ,但在最后查询数据 select * from ceshi limit 10; 的时候既不报错也不出结果,卡那了 请教大神是咋回事
create external table ceshi (
first string,
second string
)
STORED BY 'org.elasticsearch.hadoop.hive.EsStorageHandler'
TBLPROPERTIES(
'es.nodes'='139.***.**.***',
'es.port'= '9200',
'es.resource'='ce_index/ce_type',
'es.mapping.names' = 'first:first,second:second');
Hadoop 用的是HDP 2.7.1
ES 是 5.1.1
ES-Hadoop 是用的 5.1.1
create external table ceshi (
first string,
second string
)
STORED BY 'org.elasticsearch.hadoop.hive.EsStorageHandler'
TBLPROPERTIES(
'es.nodes'='139.***.**.***',
'es.port'= '9200',
'es.resource'='ce_index/ce_type',
'es.mapping.names' = 'first:first,second:second');
Hadoop 用的是HDP 2.7.1
ES 是 5.1.1
ES-Hadoop 是用的 5.1.1
1 个回复
yangruideyang
赞同来自: