azagrebin commented on a change in pull request #9910: [FLINK-14405][runtime]
Align ResourceProfile/ResourceSpec fields with the new TaskExecutor memory
setups.
URL: https://github.com/apache/flink/pull/9910#discussion_r335982276
##########
File path:
flink-core/src/main/java/org/apache/flink/api/common/operators/ResourceSpec.java
##########
@@ -310,50 +327,73 @@ private Object readResolve() {
// builder
//
------------------------------------------------------------------------
- public static Builder newBuilder() {
- return new Builder();
+ public static Builder newBuilder(double cpuCores, MemorySize
taskHeapMemory) {
+ return new Builder(cpuCores, taskHeapMemory);
+ }
+
+ public static Builder newBuilder(double cpuCores, int taskHeapMemoryMB)
{
Review comment:
I meant the commented builder factory method, sorry for confusion.
I would prefer to move this change into a separate following hotfix commit.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services