Reputation: 133
I am using
scan 'table_name', { COLUMNS => 'column_family:column_qualifier', LIMIT => 2 }
to list 2 rows in a hbase table but I would like to know if it is possible to achieve following using hbase shell:
Upvotes: 12
Views: 28796
Reputation: 49
KeyOnlyFilter - takes no arguments. Returns the key portion of each key-value pair.
Syntax: KeyOnlyFilter ()
Upvotes: 4
Reputation: 21
Earlier solution would be:
scan 'test', {
COLUMNS => ['col_family_name:col_name'],
FILTER => "RowFilter(=, 'substring:the_string_to_be_compared')"
}
Upvotes: 2
Reputation: 34184
A1. hbase(main):015:0> count 'table_name', INTERVAL => 1
A2. Use RowKey
filter with SubstringComparator
.
Usage :
hbase(main):003:0> import org.apache.hadoop.hbase.filter.CompareFilter
hbase(main):005:0> import org.apache.hadoop.hbase.filter.SubstringComparator
hbase(main):006:0> scan 'test', {FILTER => org.apache.hadoop.hbase.filter.RowFilter.new(CompareFilter::CompareOp.valueOf('EQUAL'),SubstringComparator.new("word_by_which_you_want_to_search"))}
Upvotes: 39