This is an automated email from the ASF dual-hosted git repository.

hongze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 13728ae28a [GLUTEN-9623][FLINK] Fix blocking queue not close cause 
memory leak (#9624)
13728ae28a is described below

commit 13728ae28ab11f5109e4459f4040373488a7ef08
Author: kevinyhzou <[email protected]>
AuthorDate: Thu May 15 00:44:49 2025 +0800

    [GLUTEN-9623][FLINK] Fix blocking queue not close cause memory leak (#9624)
---
 .../apache/gluten/table/runtime/operators/GlutenSingleInputOperator.java | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/gluten-flink/runtime/src/main/java/org/apache/gluten/table/runtime/operators/GlutenSingleInputOperator.java
 
b/gluten-flink/runtime/src/main/java/org/apache/gluten/table/runtime/operators/GlutenSingleInputOperator.java
index 89a941063b..8e888a5ef9 100644
--- 
a/gluten-flink/runtime/src/main/java/org/apache/gluten/table/runtime/operators/GlutenSingleInputOperator.java
+++ 
b/gluten-flink/runtime/src/main/java/org/apache/gluten/table/runtime/operators/GlutenSingleInputOperator.java
@@ -126,6 +126,7 @@ public class GlutenSingleInputOperator extends 
TableStreamOperator<RowData>
 
     @Override
     public void close() throws Exception {
+        inputQueue.close();
         task.close();
         session.close();
         memoryManager.close();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to