Enum Class OutOfMemoryPolicy

java.lang.Object
java.lang.Enum<OutOfMemoryPolicy>
org.apache.bookkeeper.common.allocator.OutOfMemoryPolicy
All Implemented Interfaces:
Serializable, Comparable<OutOfMemoryPolicy>, Constable

public enum OutOfMemoryPolicy extends Enum<OutOfMemoryPolicy>
Represents the action to take when it's not possible to allocate memory.
  • Enum Constant Details

    • ThrowException

      public static final OutOfMemoryPolicy ThrowException
      Throw regular OOM exception without taking addition actions.
    • FallbackToHeap

      public static final OutOfMemoryPolicy FallbackToHeap
      If it's not possible to allocate a buffer from direct memory, fallback to allocate an unpooled buffer from JVM heap.

      This will help absorb memory allocation spikes because the heap allocations will naturally slow down the process and will result if full GC cleanup if the Heap itself is full.

  • Method Details

    • values

      public static OutOfMemoryPolicy[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OutOfMemoryPolicy valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null