From 31c3edaa29776b63cc69ecd37306ad10836992eb Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Mon, 17 Jul 2017 17:11:16 +0800 Subject: [PATCH] HBASE-18389 Remove byte[] from formal parameter of sizeOf() of ClassSize, ClassSize.MemoryLayout and ClassSize.UnsafeLayout Signed-off-by: Chia-Ping Tsai --- .../org/apache/hadoop/hbase/CellUtil.java | 8 ++--- .../org/apache/hadoop/hbase/KeyValue.java | 4 +-- .../apache/hadoop/hbase/util/ClassSize.java | 34 ++++++++++++++++--- 3 files changed, 36 insertions(+), 10 deletions(-) diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java index 56de21bac0f..1146de4e318 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java @@ -564,7 +564,7 @@ public final class CellUtil { public long heapSize() { long sum = HEAP_SIZE_OVERHEAD + CellUtil.estimatedHeapSizeOf(cell); if (this.tags != null) { - sum += ClassSize.sizeOf(this.tags, this.tags.length); + sum += ClassSize.sizeOf(this.tags); } return sum; } @@ -763,7 +763,7 @@ public final class CellUtil { long sum = HEAP_SIZE_OVERHEAD + CellUtil.estimatedHeapSizeOf(cell); // this.tags is on heap byte[] if (this.tags != null) { - sum += ClassSize.sizeOf(this.tags, this.tags.length); + sum += ClassSize.sizeOf(this.tags); } return sum; } @@ -889,7 +889,7 @@ public final class CellUtil { public long heapSize() { long sum = ClassSize.REFERENCE + super.heapSize(); if (this.value != null) { - sum += ClassSize.sizeOf(this.value, this.value.length); + sum += ClassSize.sizeOf(this.value); } return sum; } @@ -989,7 +989,7 @@ public final class CellUtil { public long heapSize() { long sum = ClassSize.REFERENCE + super.heapSize(); if (this.value != null) { - sum += ClassSize.sizeOf(this.value, this.value.length); + sum += ClassSize.sizeOf(this.value); } return sum; } diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java index 9b9dc4381e0..98cf9cb1da4 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java @@ -2608,8 +2608,8 @@ public class KeyValue implements ExtendedCell { */ return ClassSize.align(sum) + (offset == 0 - ? ClassSize.sizeOf(bytes, length) // count both length and object overhead - : length); // only count the number of bytes + ? ClassSize.sizeOfByteArray(length) // count both length and object overhead + : length); // only count the number of bytes } /** diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ClassSize.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ClassSize.java index 1b19c92eec8..3ab59e73c0d 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ClassSize.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ClassSize.java @@ -168,7 +168,7 @@ public class ClassSize { return ((num + 7) >> 3) << 3; } - long sizeOf(byte[] b, int len) { + long sizeOfByteArray(int len) { return align(arrayHeaderSize() + len); } } @@ -213,7 +213,7 @@ public class ClassSize { @Override @SuppressWarnings("static-access") - long sizeOf(byte[] b, int len) { + long sizeOfByteArray(int len) { return align(arrayHeaderSize() + len * UnsafeAccess.theUnsafe.ARRAY_BYTE_INDEX_SCALE); } } @@ -463,8 +463,34 @@ public class ClassSize { return model != null && model.equals("32"); } - public static long sizeOf(byte[] b, int len) { - return memoryLayout.sizeOf(b, len); + /** + * Calculate the memory consumption (in byte) of a byte array, + * including the array header and the whole backing byte array. + * + * If the whole byte array is occupied (not shared with other objects), please use this function. + * If not, please use {@link #sizeOfByteArray(int)} instead. + * + * @param b the byte array + * @return the memory consumption (in byte) of the whole byte array + */ + public static long sizeOf(byte[] b) { + return memoryLayout.sizeOfByteArray(b.length); + } + + /** + * Calculate the memory consumption (in byte) of a part of a byte array, + * including the array header and the part of the backing byte array. + * + * This function is used when the byte array backs multiple objects. + * For example, in {@link org.apache.hadoop.hbase.KeyValue}, + * multiple KeyValue objects share a same backing byte array ({@link org.apache.hadoop.hbase.KeyValue#bytes}). + * Also see {@link org.apache.hadoop.hbase.KeyValue#heapSize()}. + * + * @param len the length (in byte) used partially in the backing byte array + * @return the memory consumption (in byte) of the part of the byte array + */ + public static long sizeOfByteArray(int len) { + return memoryLayout.sizeOfByteArray(len); } }