Hello, I’m running Samza tasks using ProcessJobFactory and after I start the job, the initial process spawns a new process that is the actual process where the code is run. The problem is that the parent process stays active even after the job is started and that messes with the way I deploy Samza (in Docker containers) and consumes memory while not doing anything.
My question: is it possible to kill the parent process while still leaving the Samza tasks to process messages? Lukas