deepakpanda93 commented on issue #15530: URL: https://github.com/apache/hudi/issues/15530#issuecomment-4965796599
This issue was reviewed as part of the JIRA-migrated backlog triage. Findings: The linked PR #7104 was closed without merging, but the underlying resource-leak concern is handled on current master. AsyncCleanerService's single-thread executor is shut down through BaseHoodieTableServiceClient.close() -> AsyncCleanerService.forceShutdown() -> HoodieAsyncService.shutdown(true) -> executor.shutdownNow() (hudi-client/.../async/HoodieAsyncService.java:106-120). The executor is therefore released when the write client is closed, so the async clean service no longer lingers after running. Closing as 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
