Class QueryScopeInfo.OperatorQueryScopeInfo
- java.lang.Object
-
- org.apache.flink.runtime.metrics.dump.QueryScopeInfo
-
- org.apache.flink.runtime.metrics.dump.QueryScopeInfo.OperatorQueryScopeInfo
-
- Enclosing class:
- QueryScopeInfo
public static class QueryScopeInfo.OperatorQueryScopeInfo extends QueryScopeInfo
Container for the operator scope. Stores the ID of the job/vertex, the subtask index and the name of the operator.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.flink.runtime.metrics.dump.QueryScopeInfo
QueryScopeInfo.JobManagerOperatorQueryScopeInfo, QueryScopeInfo.JobManagerQueryScopeInfo, QueryScopeInfo.JobQueryScopeInfo, QueryScopeInfo.OperatorQueryScopeInfo, QueryScopeInfo.TaskManagerQueryScopeInfo, QueryScopeInfo.TaskQueryScopeInfo
-
-
Field Summary
Fields Modifier and Type Field Description int
attemptNumber
String
jobID
String
operatorName
int
subtaskIndex
String
vertexID
-
Fields inherited from class org.apache.flink.runtime.metrics.dump.QueryScopeInfo
INFO_CATEGORY_JM, INFO_CATEGORY_JM_OPERATOR, INFO_CATEGORY_JOB, INFO_CATEGORY_OPERATOR, INFO_CATEGORY_TASK, INFO_CATEGORY_TM, scope
-
-
Constructor Summary
Constructors Constructor Description OperatorQueryScopeInfo(String jobID, String vertexid, int subtaskIndex, int attemptNumber, String operatorName)
OperatorQueryScopeInfo(String jobID, String vertexid, int subtaskIndex, int attemptNumber, String operatorName, String scope)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryScopeInfo.OperatorQueryScopeInfo
copy(String additionalScope)
Create a copy of this QueryScopeInfo and append the given scope.byte
getCategory()
Returns the category for this QueryScopeInfo.-
Methods inherited from class org.apache.flink.runtime.metrics.dump.QueryScopeInfo
concatScopes, toString
-
-
-
-
Method Detail
-
copy
public QueryScopeInfo.OperatorQueryScopeInfo copy(String additionalScope)
Description copied from class:QueryScopeInfo
Create a copy of this QueryScopeInfo and append the given scope.- Specified by:
copy
in classQueryScopeInfo
- Parameters:
additionalScope
- scope to append- Returns:
- modified copy of this QueryScopeInfo
-
getCategory
public byte getCategory()
Description copied from class:QueryScopeInfo
Returns the category for this QueryScopeInfo.- Specified by:
getCategory
in classQueryScopeInfo
- Returns:
- category
-
-