HBASE-8802 totalCompactingKVs overflow (Chao Shi)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1497050 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
sershe 2013-06-26 19:31:15 +00:00
parent 628177ecee
commit a3b00ea1f4
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public abstract class Compactor {
/** The sole reason this class exists is that java has no ref/out/pointer parameters. */
protected static class FileDetails {
/** Maximum key count after compaction (for blooms) */
public int maxKeyCount = 0;
public long maxKeyCount = 0;
/** Earliest put timestamp if major compaction */
public long earliestPutTs = HConstants.LATEST_TIMESTAMP;
/** The last key in the files we're compacting. */