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:
parent
628177ecee
commit
a3b00ea1f4
|
@ -108,7 +108,7 @@ public abstract class Compactor {
|
||||||
/** The sole reason this class exists is that java has no ref/out/pointer parameters. */
|
/** The sole reason this class exists is that java has no ref/out/pointer parameters. */
|
||||||
protected static class FileDetails {
|
protected static class FileDetails {
|
||||||
/** Maximum key count after compaction (for blooms) */
|
/** Maximum key count after compaction (for blooms) */
|
||||||
public int maxKeyCount = 0;
|
public long maxKeyCount = 0;
|
||||||
/** Earliest put timestamp if major compaction */
|
/** Earliest put timestamp if major compaction */
|
||||||
public long earliestPutTs = HConstants.LATEST_TIMESTAMP;
|
public long earliestPutTs = HConstants.LATEST_TIMESTAMP;
|
||||||
/** The last key in the files we're compacting. */
|
/** The last key in the files we're compacting. */
|
||||||
|
|
Loading…
Reference in New Issue