scwhittle commented on code in PR #35523: URL: https://github.com/apache/beam/pull/35523#discussion_r2226822781
########## runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/windmill/client/AbstractWindmillStream.java: ########## @@ -472,17 +505,74 @@ private void clearPhysicalStreamForDebug() { currentPhysicalStreamForDebug.set(null); } + private void onHalfClosePhysicalStreamTimeout(PhysicalStreamHandler handler) { + synchronized (this) { + if (currentPhysicalStream != handler || clientClosed || isShutdown) { + return; + } + try { + handler.streamDebugMetrics.recordHalfClose(); + closingPhysicalStreams.add(handler); + currentPhysicalStream = null; + halfCloseFuture = null; // This is the currently running future. + clearPhysicalStreamForDebug(); + requestObserver.onCompleted(); + } catch (Exception e) { + // XXX figure out + } + try { + @NonNull PhysicalStreamHandler streamHandler = newResponseHandler(); + streamHandler.streamDebugMetrics.recordStart(); + currentPhysicalStream = streamHandler; + currentPhysicalStreamForDebug.set(currentPhysicalStream); + requestObserver.reset(physicalStreamFactory.apply(new ResponseObserver(streamHandler))); + onFlushPending(true); + } catch (Exception e) { + // XXX figure out + } + } + } + private void onPhysicalStreamCompletion(Status status, PhysicalStreamHandler handler) { synchronized (this) { + final boolean wasActiveStream = currentPhysicalStream == handler; if (currentPhysicalStream == handler) { clearPhysicalStreamForDebug(); currentPhysicalStream = null; + if (halfCloseFuture != null) { + halfCloseFuture.cancel(false); + halfCloseFuture = null; Review Comment: done -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org