gpt4 book ai didi

Hbase 多部分行键扫描

转载 作者:行者123 更新时间:2023-12-02 20:54:37 24 4
gpt4 key购买 nike

我正在尝试找到一种解决方案来扫描 Hbase 表,其中包含来自同一行键的多个部分键。

例子:

RowKey: account_id|name|age|transaction_date
12345|abc |50 |2016-05-05 08:10:10

这里我想扫描一个 hbase 表以使用以下部分键组合获取所有可能的值:

Rowkey: account_id|transation_date
12345|2016-05-05 08:10:10

最佳答案

你可以使用prefix filter. ... 类似下面的内容。

前缀过滤器:

This filter takes one argument a prefix of a row key. It returns onlythose key-values present in a row that starts with the specified rowprefix

Syntax

PrefixFilter (<row_prefix>)

java客户端同样可以使用

scan 'yourtable', {FILTER => "PrefixFilter('12345|abc|50|2016-05-05')"}

scan 'yourtable', {STARTROW=>'12345' FILTER => "PrefixFilter('2016-05-05 08:10:10')"}
OR
scan 'yourtable', {ENDROW='2016-05-05 08:10:10'"}

根据您的要求...

注意:java hbase scan api 也有相同的方法,如果你想从 java 做的话

关于Hbase 多部分行键扫描,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40875027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com