Why it matters
GC pauses hurt HBase p99. Off-heap avoids. Understanding shapes tuning at scale.
Advertisement
The architecture
On-heap: Java-managed, GC-affected.
Off-heap: direct memory, GC-free but slower access.
Advertisement
How it works end to end
BucketCache modes: heap, offheap, file (SSD).
Combined LRU + BucketCache: hot on-heap, warm off-heap.
Off-heap memstore (newer): reduces heap pressure further.