org.apache.flink.api.common.operators.Operator.getMinResources()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(100)

本文整理了Java中org.apache.flink.api.common.operators.Operator.getMinResources()方法的一些代码示例,展示了Operator.getMinResources()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Operator.getMinResources()方法的具体详情如下:
包路径:org.apache.flink.api.common.operators.Operator
类名称:Operator
方法名:getMinResources

Operator.getMinResources介绍

[英]Gets the minimum resources for this operator. The minimum resources denotes how many resources will be needed at least minimum for the operator or user function during the execution.
[中]获取此运算符的最小资源。最小资源表示执行期间操作员或用户功能至少需要多少资源。

代码示例

代码示例来源:origin: apache/flink

public ResourceSpec getMinResources() {
  return this.template.getOperator().getMinResources();
}

代码示例来源:origin: org.apache.flink/flink-optimizer_2.10

public ResourceSpec getMinResources() {
  return this.template.getOperator().getMinResources();
}

代码示例来源:origin: org.apache.flink/flink-optimizer

public ResourceSpec getMinResources() {
  return this.template.getOperator().getMinResources();
}

代码示例来源:origin: com.alibaba.blink/flink-optimizer

public ResourceSpec getMinResources() {
  return this.template.getOperator().getMinResources();
}

代码示例来源:origin: org.apache.flink/flink-optimizer_2.11

public ResourceSpec getMinResources() {
  return this.template.getOperator().getMinResources();
}

相关文章