HBASE-6185 Update javadoc for ConstantSizeRegionSplitPolicy class
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1350388 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d602aa4385
commit
8c75efb968
|
@ -24,7 +24,10 @@ import org.apache.hadoop.hbase.HConstants;
|
|||
* A {@link RegionSplitPolicy} implementation which splits a region
|
||||
* as soon as any of its store files exceeds a maximum configurable
|
||||
* size.
|
||||
* <p>This is the default split policy.</p>
|
||||
* <p>
|
||||
* This is the default split policy. From 0.94.0 on the default split policy has
|
||||
* changed to {@link IncreasingToUpperBoundRegionSplitPolicy}
|
||||
* </p>
|
||||
*/
|
||||
@InterfaceAudience.Private
|
||||
public class ConstantSizeRegionSplitPolicy extends RegionSplitPolicy {
|
||||
|
|
|
@ -31,7 +31,9 @@ import com.google.common.base.Preconditions;
|
|||
|
||||
/**
|
||||
* A split policy determines when a region should be split.
|
||||
* {@see ConstantSizeRegionSplitPolicy}
|
||||
* @see IncreasingToUpperBoundRegionSplitPolicy Default split policy since
|
||||
* 0.94.0
|
||||
* @see ConstantSizeRegionSplitPolicy Default split policy before 0.94.0
|
||||
*/
|
||||
@InterfaceAudience.Private
|
||||
public abstract class RegionSplitPolicy extends Configured {
|
||||
|
|
Loading…
Reference in New Issue