Package org.apache.hadoop.hbase.executor
Enum ExecutorType
- All Implemented Interfaces:
Serializable
,Comparable<ExecutorType>
The following is a list of all executor types, both those that run in the master and those that
run in the regionserver.
-
Enum Constant Summary
Enum ConstantDescription -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription(package private) String
getExecutorName
(String serverName) Returns Conflation of the executor type and the passedserverName
.static ExecutorType
Returns the enum constant of this type with the specified name.static ExecutorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MASTER_CLOSE_REGION
-
MASTER_OPEN_REGION
-
MASTER_SERVER_OPERATIONS
-
MASTER_TABLE_OPERATIONS
-
MASTER_RS_SHUTDOWN
-
MASTER_META_SERVER_OPERATIONS
-
M_LOG_REPLAY_OPS
-
MASTER_SNAPSHOT_OPERATIONS
-
MASTER_MERGE_OPERATIONS
-
RS_OPEN_REGION
-
RS_OPEN_ROOT
-
RS_OPEN_META
-
RS_CLOSE_REGION
-
RS_CLOSE_ROOT
-
RS_CLOSE_META
-
RS_PARALLEL_SEEK
-
RS_LOG_REPLAY_OPS
-
RS_REGION_REPLICA_FLUSH_OPS
-
RS_COMPACTED_FILES_DISCHARGER
-
RS_OPEN_PRIORITY_REGION
-
RS_REFRESH_PEER
-
RS_SWITCH_RPC_THROTTLE
-
RS_IN_MEMORY_COMPACTION
-
RS_CLAIM_REPLICATION_QUEUE
-
RS_SNAPSHOT_OPERATIONS
-
RS_FLUSH_OPERATIONS
-
-
Constructor Details
-
ExecutorType
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getExecutorName
Returns Conflation of the executor type and the passedserverName
.
-