0

我有一个 HBase 表,其中行键看起来像这样。

08:516485815:2013 1
06:260070837:2014 1
00:338289200:2014 1

我使用以下查询创建了一个 Hive 链接表。

create external table hb
(key string,value string)
stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
with serdeproperties("hbase.columns.mapping"=":key,e:-1")
tblproperties("hbase.table.name"="hbaseTable");

当我查询表格时,我得到以下结果

select * from hb;

08:516485815 1
06:260070837 1
00:338289200 1

这对我来说很奇怪。为什么 serde 无法映射 HBase 密钥的全部内容?蜂巢表在第二个“:”之后缺少所有内容

有没有人遇到过类似的问题?

4

1 回答 1

1

我尝试在 Hbase 1.1.2 和 Hive 1.2.1000 上重新创建您的场景,它按预期工作,我能够从 hive 获取整个 rowkey

hbase>   create 'hbaseTable','e'
hbase>   put 'hbaseTable','08:516485815:2013','e:-1','1'
hbase>   scan 'hbaseTable'
    ROW                                                         COLUMN+CELL
     08:516485815:2013                                          column=e:-1, timestamp=1519675029451, value=1
    1 row(s) in 0.0160 seconds

因为我将 08:516485815:2013 作为行键,并且我创建了配置单元表

 hive> create external table hb
    (key string,value string)
    stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
    with serdeproperties("hbase.columns.mapping"=":key,e:-1")
    tblproperties("hbase.table.name"="hbaseTable");
 hive> select * from hb;
    +--------------------+-----------+--+
    |       hb.key       | hb.value  |
    +--------------------+-----------+--+
    | 08:516485815:2013  | 1         |
    +--------------------+-----------+--+

您能否确保您的 hbase 表行键具有第二个之后的数据:

于 2018-02-26T20:04:29.160 回答