DEFAULT_MAX_FILE_SIZE defaults to a negative value
--------------------------------------------------
Key: HBASE-5574
URL: https://issues.apache.org/jira/browse/HBASE-5574
Project: HBase
Issue Type: Bug
Affects Versions: 0.94.0
Reporter: Michael Drzal
Assignee: Michael Drzal
HBASE-4365 changed the value of DEFAULT_MAX_FILE_SIZE from 256MB to 10G. Here
is the line of code:
public static final long DEFAULT_MAX_FILE_SIZE = 10 * 1024 * 1024 * 1024;
The problem is that java evaluates the constant as an int which wraps and gets
assigned to a long. I verified this with a test. The quick fix is to change
the end to 1024L;
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira