noorall commented on code in PR #25366: URL: https://github.com/apache/flink/pull/25366#discussion_r1772592415
########## flink-runtime/src/main/java/org/apache/flink/streaming/api/graph/StreamingJobGraphGenerator.java: ########## @@ -220,24 +199,16 @@ private StreamingJobGraphGenerator( this.defaultStreamGraphHasher = new StreamGraphHasherV2(); this.legacyStreamGraphHashers = Arrays.asList(new StreamGraphUserHashHasher()); - this.jobVertices = new LinkedHashMap<>(); this.builtVertices = new HashSet<>(); - this.chainedConfigs = new HashMap<>(); - this.vertexConfigs = new HashMap<>(); - this.chainedNames = new HashMap<>(); - this.chainedMinResources = new HashMap<>(); - this.chainedPreferredResources = new HashMap<>(); - this.chainedInputOutputFormats = new HashMap<>(); - this.physicalEdgesInOrder = new ArrayList<>(); this.serializationExecutor = Preconditions.checkNotNull(serializationExecutor); - this.chainInfos = new HashMap<>(); - this.opNonChainableOutputsCache = new LinkedHashMap<>(); - + this.hasHybridResultPartition = new AtomicBoolean(false); Review Comment: > It seems that this field is only used for JobVertexBuildContext. I don't think it's useful for this class anymore. You are right, this field has been removed. -- 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