@Deprecated public enum VisorIgfsMode extends Enum<VisorIgfsMode>
IGFS mode defining interactions with underlying secondary Hadoop file system.
Secondary Hadoop file system is provided for pass-through, write-through, and
read-through purposes.| Enum Constant and Description |
|---|
DUAL_ASYNC
Deprecated.
In this mode
IGFS will cache files locally and also asynchronously
write them through to secondary Hadoop file system. |
DUAL_SYNC
Deprecated.
In this mode
IGFS will cache files locally and also synchronously
write them through to secondary Hadoop file system. |
PRIMARY
Deprecated.
In this mode IGFS will not delegate to secondary Hadoop file system and will
cache all the files in memory only.
|
PROXY
Deprecated.
In this mode IGFS will not cache any files in memory and will only pass them
through to secondary Hadoop file system.
|
| Modifier and Type | Method and Description |
|---|---|
static @Nullable VisorIgfsMode |
fromOrdinal(int ord)
Deprecated.
Efficiently gets enumerated value from its ordinal.
|
static VisorIgfsMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static VisorIgfsMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisorIgfsMode PRIMARY
public static final VisorIgfsMode PROXY
public static final VisorIgfsMode DUAL_SYNC
IGFS will cache files locally and also synchronously
write them through to secondary Hadoop file system.
If secondary Hadoop file system is not configured, then this mode behaves like
PRIMARY mode.
public static final VisorIgfsMode DUAL_ASYNC
IGFS will cache files locally and also asynchronously
write them through to secondary Hadoop file system.
If secondary Hadoop file system is not configured, then this mode behaves like
PRIMARY mode.
public static VisorIgfsMode[] values()
for (VisorIgfsMode c : VisorIgfsMode.values()) System.out.println(c);
public static VisorIgfsMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null@Nullable public static @Nullable VisorIgfsMode fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.10.0 Release Date : March 10 2021