You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HappyBase simply passes the filter argument to Table.scan() to the Thrift API. This string should use the filter string syntax used by the HBase Thrift API.
I noticed that in the document:
Does the filter here mean column filters? what does "filter string" mean? in hbase shell, you use filter like this:
scan 'table', { COLUMNS => 'family:qualifier', FILTER =>
SingleColumnValueFilter.new
(Bytes.toBytes('family'),
Bytes.toBytes('qualifier'),
CompareFilter::CompareOp.valueOf('EQUAL'),
SubstringComparator.new('somevalue'))
}
How does it work using happybase ?
The text was updated successfully, but these errors were encountered: