dmvk commented on code in PR #22169: URL: https://github.com/apache/flink/pull/22169#discussion_r1137408672
########## flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/AdaptiveScheduler.java: ########## @@ -730,15 +748,49 @@ public CompletableFuture<CoordinationResponse> deliverCoordinationRequestToCoord + " does not exist"))); } + @Override + public JobResourceRequirements requestJobResourceRequirements() { + final JobResourceRequirements.Builder builder = JobResourceRequirements.newBuilder(); + for (JobInformation.VertexInformation vertex : jobInformation.getVertices()) { + builder.setParallelismForJobVertex(vertex.getJobVertexID(), 1, vertex.getParallelism()); Review Comment: 👍 This is indeed something that needs to be addressed. I'll change (so AS respects the setting) that in a separate PR to avoid inflating this one any further. I've created https://issues.apache.org/jira/browse/FLINK-31476 to track it. I think it's OK to ignore the setting until then, WDYT? -- 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. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org