Package com.linkedin.venice.meta
Enum Class StorageMode
- All Implemented Interfaces:
VeniceEnumValue,Serializable,Comparable<StorageMode>,Constable
Per-version storage mode controlling where data for a Venice store version is persisted relative to the optional
external storage system. Mirrors the
storageMode field staged on StoreVersion (StoreMetaValue v44)
by PR #2814.
Read-side routing is selected separately by ExternalStorageReadMode at the store level.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionData is written to both Venice local storage and the configured external storage.External-storage-only.Default. -
Method Summary
Modifier and TypeMethodDescriptionintgetValue()static StorageModevalueOf(int value) Returns the enum constant of this class with the specified name.static StorageModeReturns the enum constant of this class with the specified name.static StorageMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTERNAL
Default. Data persisted in Venice local storage only. Current behavior. -
DUAL_WRITE
Data is written to both Venice local storage and the configured external storage. The specific dual-write implementation — leader-consumer-pipeline vs Venice Push Job — is selected by separate server/VPJ configuration, not by this enum. -
EXTERNAL
External-storage-only. Venice's data partition becomes NoOp while metadata partitions are still persisted locally for checkpointing.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
valueOf
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:
value- 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 nameNullPointerException- if the argument is null
-
getValue
public int getValue()- Specified by:
getValuein interfaceVeniceEnumValue
-