Re: How to configure HBase in a HA mode?

2016-08-04 Thread Dima Spivak
Hey Alexandr, In that case, you'd use what you have set in your hdfs-site.xml for the dfs.nameservices property (followed by the HBase directory under HDFS). -Dima On Thu, Aug 4, 2016 at 12:54 PM, Alexandr Porunov < alexandr.poru...@gmail.com> wrote: > Hello, > > I don't understand one

Re: query multiple specified columns using filterlist

2016-08-04 Thread 乔彦克
I've tried FilterList. But the valueFilter('hello kitty') filters the cells out which value not match 'hello kitty', and only 'hello kitty' in each row returns, other column will not return either. So 'AND' in this way is not essential. Ted Yu 于2016年8月4日周四 下午5:13写道: > You

Re: query multiple specified columns using filterlist

2016-08-04 Thread Ted Yu
You can use FilterList to put the filters together: public FilterList(final Operator operator) { AND -> MUST_PASS_ALL On Thu, Aug 4, 2016 at 2:07 AM, 乔彦克 wrote: > Thanks for the advice, Ted. > I have the column prefix and the column value( in fact these two filters > are

Re: query multiple specified columns using filterlist

2016-08-04 Thread 乔彦克
Thanks for the advice, Ted. I have the column prefix and the column value( in fact these two filters are are in the same column), but don't have the column name, so I can't use SingleColumnValueFilter. *Now I use two qualifierFilters and a ColumnPrefixFilter to specify three columns, and a value