Enum IormPlanObjectiveEnum
- java.lang.Object
-
- java.lang.Enum<IormPlanObjectiveEnum>
-
- com.oracle.bmc.databasemanagement.model.IormPlanObjectiveEnum
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<IormPlanObjectiveEnum>
@Generated(value="OracleSDKGenerator", comments="API Version: 20201101") public enum IormPlanObjectiveEnum extends Enum<IormPlanObjectiveEnum> implements BmcEnum
The objective of the IORM plan of an Exadata storage server.The following is an excerpt from Exadata documentation: auto - Use this setting for IORM to determine the best mode based on active workloads and resource plans. IORM continuously and dynamically determines the optimization objective, based on the observed workloads and enabled resource plans. This is the recommended value for most use cases, and starting with Oracle Exadata System Software release 21.2.0, this is the default setting. high_throughput - Use this setting to optimize critical DSS workloads that require high throughput. This setting improves throughput at the cost of I/O latency. low_latency - Use this setting to optimize critical OLTP workloads that require extremely good disk latency. This setting provides the lowest possible latency at the cost of throughput by limiting disk utilization. balanced - Use this setting for a mixture of critical OLTP and DSS workloads. This setting balances low disk latency and high throughput. This setting limits disk utilization of large I/Os to a lesser extent than low_latency to achieve a balance between latency and throughput. basic - Use this setting to limit the maximum small I/O latency and otherwise disable I/O prioritization. This is the default setting in Oracle Exadata System Software release 20.1.0 and earlier. other - Temporarily handle the case when Exadata side adds new value, should not be used as input when to make change to IORM plan.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Auto
Balanced
Basic
HighThroughput
LowLatency
Other
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IormPlanObjectiveEnum
create(String key)
String
getValue()
static IormPlanObjectiveEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static IormPlanObjectiveEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Auto
public static final IormPlanObjectiveEnum Auto
-
HighThroughput
public static final IormPlanObjectiveEnum HighThroughput
-
LowLatency
public static final IormPlanObjectiveEnum LowLatency
-
Balanced
public static final IormPlanObjectiveEnum Balanced
-
Basic
public static final IormPlanObjectiveEnum Basic
-
Other
public static final IormPlanObjectiveEnum Other
-
UnknownEnumValue
public static final IormPlanObjectiveEnum UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static IormPlanObjectiveEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IormPlanObjectiveEnum c : IormPlanObjectiveEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IormPlanObjectiveEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static IormPlanObjectiveEnum create(String key)
-
-