Enum Class VeniceUserStoreType

java.lang.Object
java.lang.Enum<VeniceUserStoreType>
com.linkedin.venice.meta.VeniceUserStoreType
All Implemented Interfaces:
Serializable, Comparable<VeniceUserStoreType>, Constable

public enum VeniceUserStoreType extends Enum<VeniceUserStoreType>
Enums that lists most Venice user store types.
  • Enum Constant Details

    • BATCH_ONLY

      public static final VeniceUserStoreType BATCH_ONLY
      The data in batch-only stores will be populated by offline pushes/Samza reprocessing only.
    • HYBRID_ONLY

      public static final VeniceUserStoreType HYBRID_ONLY
      The data in hybrid stores will be populated by offline pushes/Samza reprocessing as well as Samza real-time updates.
    • INCREMENTAL_PUSH

      public static final VeniceUserStoreType INCREMENTAL_PUSH
      The data in these stores are from full pushes and incremental pushes.
    • HYBRID_OR_INCREMENTAL

      public static final VeniceUserStoreType HYBRID_OR_INCREMENTAL
      These stores are either hybrid or incremental push enabled.
    • SYSTEM

      public static final VeniceUserStoreType SYSTEM
      These stores are system stores whose name starts with Store.SYSTEM_STORE_NAME_PREFIX.
    • ALL

      public static final VeniceUserStoreType ALL
      All user stores in Venice, excluding system stores.
  • Method Details

    • values

      public static VeniceUserStoreType[] 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 VeniceUserStoreType 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