HBASE-5574 DEFAULT_MAX_FILE_SIZE defaults to a negative value
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1300288 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
05423b150b
commit
eebdfb5d65
|
@ -232,7 +232,7 @@ public final class HConstants {
|
||||||
"hbase.hregion.max.filesize";
|
"hbase.hregion.max.filesize";
|
||||||
|
|
||||||
/** Default maximum file size */
|
/** Default maximum file size */
|
||||||
public static final long DEFAULT_MAX_FILE_SIZE = 10 * 1024 * 1024 * 1024;
|
public static final long DEFAULT_MAX_FILE_SIZE = 10 * 1024 * 1024 * 1024L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The max number of threads used for opening and closing stores or store
|
* The max number of threads used for opening and closing stores or store
|
||||||
|
|
Loading…
Reference in New Issue