gpt4 book ai didi

Hbase 根据列和时间戳过滤行

转载 作者:行者123 更新时间:2023-12-04 11:56:18 25 4
gpt4 key购买 nike

我想使用 hbase shell 根据列值时间戳过滤列。例如:

f:my_qualifier  timestamp=1417542508438,  value=some value

我想返回时间戳 > 特定时间戳的所有列值。这可以使用 hbase shell 吗?看起来 TimestampsFilter 需要一个特定的时间戳,我认为不可能使用比较器。

提前致谢!

最佳答案

使用 TIMERANGE 选项:

scan 't1', {COLUMNS => 'c1', TIMERANGE => [1303668804, 1303668904]}

查看 scan 命令帮助以获取更多选项:
hbase(main):001:0> scan

Here is some help for this command:
Scan a table; pass table name and optionally a dictionary of scanner
specifications. Scanner specifications may include one or more of:
TIMERANGE, FILTER, LIMIT, STARTROW, STOPROW, TIMESTAMP, MAXLENGTH,
or COLUMNS, CACHE

Some examples:

hbase> scan '.META.'
hbase> scan '.META.', {COLUMNS => 'info:regioninfo'}
hbase> scan 't1', {COLUMNS => ['c1', 'c2'], LIMIT => 10, STARTROW => 'xyz'}
hbase> scan 't1', {COLUMNS => 'c1', TIMERANGE => [1303668804, 1303668904]}
hbase> scan 't1', {FILTER => "(PrefixFilter ('row2') AND (QualifierFilter (>=, 'binary:xyz'))) AND (TimestampsFilter ( 123, 456))"}
hbase> scan 't1', {FILTER => org.apache.hadoop.hbase.filter.ColumnPaginationFilter.new(1, 0)}

关于Hbase 根据列和时间戳过滤行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27281710/

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