Uses of Class
org.apache.flink.api.common.operators.ResourceSpec
-
Packages that use ResourceSpec Package Description org.apache.flink.api.common.operators org.apache.flink.api.common.operators.util org.apache.flink.api.dag -
-
Uses of ResourceSpec in org.apache.flink.api.common.operators
Fields in org.apache.flink.api.common.operators declared as ResourceSpec Modifier and Type Field Description static ResourceSpecResourceSpec. DEFAULTThe default ResourceSpec used for operators and transformation functions.static ResourceSpecResourceSpec. UNKNOWNA ResourceSpec that indicates an unknown set of resources.static ResourceSpecResourceSpec. ZEROA ResourceSpec that indicates zero amount of resources.Methods in org.apache.flink.api.common.operators that return ResourceSpec Modifier and Type Method Description ResourceSpecResourceSpec.Builder. build()ResourceSpecOperator. getMinResources()Gets the minimum resources for this operator.ResourceSpecOperator. getPreferredResources()Gets the preferred resources for this contract instance.ResourceSpecResourceSpec. merge(ResourceSpec other)Used by system internally to merge the other resources of chained operators when generating the job graph.ResourceSpecResourceSpec. subtract(ResourceSpec other)Subtracts another resource spec from this one.Methods in org.apache.flink.api.common.operators with parameters of type ResourceSpec Modifier and Type Method Description booleanResourceSpec. lessThanOrEqual(ResourceSpec other)Checks the current resource less than or equal with the other resource by comparing all the fields in the resource.ResourceSpecResourceSpec. merge(ResourceSpec other)Used by system internally to merge the other resources of chained operators when generating the job graph.voidOperator. setResources(ResourceSpec minResources, ResourceSpec preferredResources)Sets the minimum and preferred resources for this contract instance.ResourceSpecResourceSpec. subtract(ResourceSpec other)Subtracts another resource spec from this one. -
Uses of ResourceSpec in org.apache.flink.api.common.operators.util
Methods in org.apache.flink.api.common.operators.util that return ResourceSpec Modifier and Type Method Description static ResourceSpecSlotSharingGroupUtils. extractResourceSpec(SlotSharingGroup slotSharingGroup)Methods in org.apache.flink.api.common.operators.util with parameters of type ResourceSpec Modifier and Type Method Description static voidOperatorValidationUtils. validateMinAndPreferredResources(ResourceSpec minResources, ResourceSpec preferredResources)static voidOperatorValidationUtils. validateResources(ResourceSpec resources) -
Uses of ResourceSpec in org.apache.flink.api.dag
Methods in org.apache.flink.api.dag that return ResourceSpec Modifier and Type Method Description ResourceSpecTransformation. getMinResources()Gets the minimum resource of this stream transformation.ResourceSpecTransformation. getPreferredResources()Gets the preferred resource of this stream transformation.Methods in org.apache.flink.api.dag with parameters of type ResourceSpec Modifier and Type Method Description voidTransformation. setResources(ResourceSpec minResources, ResourceSpec preferredResources)Sets the minimum and preferred resources for this stream transformation.
-