Hbase Replication || Impact on cluster || Storage

2017-01-14 Thread Manjeet Singh
Hi All, I have question regarding Hbase replication The clusters participating in replication can be of different sizes. The master cluster relies on randomization to attempt to balance the stream of replication on the slave clusters. It is expected that the slave cluster has storage capacity to h

Re: HBase major compaction schedule

2017-01-14 Thread Ted Yu
The off peak parameters apply to major compaction. Please take a look at SortedCompactionPolicy#selectCompaction() and related code. On Sat, Jan 14, 2017 at 3:41 AM, spats wrote: > i thought offpeak setting will affect only minor compactions and not major > compactions? correct me if i am wrong

Re: HBase major compaction schedule

2017-01-14 Thread spats
i thought offpeak setting will affect only minor compactions and not major compactions? correct me if i am wrong. offpeak is good advice to lower compaction load, but does these settings are also used by major compactions? -- View this message in context: http://apache-hbase.679495.n3.nabble.c

Re: FilterList passing RowFilter and QualifierFilter

2017-01-14 Thread Ted Yu
If you have multiple rowids, you can chain them with MUST_PASS_ONE. Chain the multiple qualifiers with MUST_PASS_ONE. Finally chain these two groups with MUST_PASS_ALL. Cheers > On Jan 13, 2017, at 10:47 PM, Prahalad kothwal wrote: > > It works fine when I apply rowfilter and qualifier filte