Hbase根据列和时间戳过滤行

时间:2014-12-03 21:11:21

标签: hbase filtering

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

f:my_qualifier  timestamp=1417542508438,  value=some value

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

提前致谢!

1 个答案:

答案 0 :(得分:3)

使用TIMERANGE选项:

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

请查看扫描命令帮助以获取更多选项:

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)}