| Package | Description |
|---|---|
| io.prestosql.execution |
| Modifier and Type | Field and Description |
|---|---|
static Set<StageState> |
StageState.TERMINAL_STAGE_STATES |
| Modifier and Type | Method and Description |
|---|---|
StageState |
StageStateMachine.getState() |
StageState |
SqlStageExecution.getState() |
StageState |
StageInfo.getState() |
static StageState |
StageState.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageState[] |
StageState.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
BasicStageStats |
StageStats.toBasicStageStats(StageState stageState) |
| Modifier and Type | Method and Description |
|---|---|
void |
StageStateMachine.addStateChangeListener(StateMachine.StateChangeListener<StageState> stateChangeListener)
Listener is always notified asynchronously using a dedicated notification thread pool so, care should
be taken to avoid leaking
this when adding a listener in a constructor. |
void |
SqlStageExecution.addStateChangeListener(StateMachine.StateChangeListener<StageState> stateChangeListener)
Listener is always notified asynchronously using a dedicated notification thread pool so, care should
be taken to avoid leaking
this when adding a listener in a constructor. |
| Constructor and Description |
|---|
StageInfo(StageId stageId,
StageState state,
URI self,
PlanFragment plan,
List<Type> types,
StageStats stageStats,
List<TaskInfo> tasks,
List<StageInfo> subStages,
ExecutionFailureInfo failureCause) |
Copyright © 2012–2019. All rights reserved.