Hisoka-X commented on issue #4915: URL: https://github.com/apache/seatunnel/issues/4915#issuecomment-1983093498
Oh I see. This is a bug of http submit job. In https://github.com/apache/seatunnel/blob/943bd4844961d6769077eff08917be307bdf8eaa/seatunnel-engine/seatunnel-engine-core/src/main/java/org/apache/seatunnel/engine/core/parse/MultipleTableJobConfigParser.java#L169 will create one ClassLoader every time submit job. In shell mode, this part code executed on client side. So the classloader will be close when client shutdown. But in http mode, this part code executed on master server side. So it can not be recycle at now. You can use shell to submit job to avoid this bug. Also, I will fix it this week. Thanks for your help! @W-dragan . -- 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]
