This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git
The following commit(s) were added to refs/heads/master by this push:
new 2e053e44 [FLINK-31294] Close the Committer when the CommitterOperator
closes
2e053e44 is described below
commit 2e053e445be99dc0e7fc445728c381bbb8e7af37
Author: liming30 <[email protected]>
AuthorDate: Fri Mar 3 19:18:12 2023 +0800
[FLINK-31294] Close the Committer when the CommitterOperator closes
This closes #578
---
.../org/apache/flink/table/store/connector/sink/CommitterOperator.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/flink-table-store-flink/flink-table-store-flink-common/src/main/java/org/apache/flink/table/store/connector/sink/CommitterOperator.java
b/flink-table-store-flink/flink-table-store-flink-common/src/main/java/org/apache/flink/table/store/connector/sink/CommitterOperator.java
index ef35d45e..27046d28 100644
---
a/flink-table-store-flink/flink-table-store-flink-common/src/main/java/org/apache/flink/table/store/connector/sink/CommitterOperator.java
+++
b/flink-table-store-flink/flink-table-store-flink-common/src/main/java/org/apache/flink/table/store/connector/sink/CommitterOperator.java
@@ -156,6 +156,7 @@ public class CommitterOperator extends
AbstractStreamOperator<Committable>
public void close() throws Exception {
committablesPerCheckpoint.clear();
inputs.clear();
+ committer.close();
super.close();
}