bq. -Dimport.filter.args=<args>
Can you show us your <args> ?
BTW from SingleColumnValueFilter.createFilterFromArguments(), you can find
the correct order of arguments:
byte [] family =
ParseFilter.removeQuotesFromByteArray(filterArguments.get(0));
byte [] qualifier =
ParseFilter.removeQuotesFromByteArray(filterArguments.get(1));
CompareOp compareOp =
ParseFilter.createCompareOp(filterArguments.get(2));
On Mon, Nov 18, 2013 at 1:42 AM, Nicolas Phung <[email protected]>wrote:
> Hello,
>
> We are using HBase hbase-0.94.6+132 with cloudera distribution. We're
> trying to do a selective taImport with HBase filter, but can't get it work:
>
> http://stackoverflow.com/questions/20007190/hbase-import-command-line-with-filter
>
> I don't know if it's really possible but the command prompt suggest it is.
> We manage to find the following ticket
> https://issues.apache.org/jira/browse/HBASE-7702 but haven't been able to
> use it for the command line.
>
> If anyone can send me some pointers on whatever this is really possible or
> now and how to do it properly.
>
> Thanks.
>
> Nicolas
>