On Mon, Sep 11, 2023 at 08:40:49PM -0400, Aaron Schrab wrote: > At 13:11 +0300 11 Sep 2023, Max Amelchenko <maxamel2002@xxxxxxxxx> wrote: > > Maybe it's connected also to the underlying infrastructure? We are > > getting this in AWS lambda jobs and we're hitting a system limit of > > max processes because of it. > > Running as a lambda, or in a container, could definitely be why you're > seeing a difference. Normally when a process is orphaned it gets adopted by > `init` (PID 1), and that will take care of cleaning up after orphaned zombie > processes. > > But most of the time containers just run the configured process directly, > without an init process. That leaves nothing to clean orphan processes. Yeah, that seems like the culprit. If the clone finishes successfully, we do end up in finish_connect(), where we wait() for the process. But if we exit early (in this case, ssh bails and we get EOF on the pipe reading from it), then we may call die() and exit immediately. We _could_ take special care to add every spawned process to a global list, set up handlers via atexit() and signal(), and then reap the processes. But traditionally it's not a big deal to exit with un-reaped children, and this is the responsibility of init. I'm not sure it makes sense for Git to basically reimplement that catch-all (and of course we cannot even do it reliably if we are killed by certain signals). > Although for that to really be a problem, would require hitting that max > process limit inside a single container invocation. Of course since > containers usually aren't meant to be spawning a lot of processes, that > limit might be a lot lower than on a normal system. > > I know that Docker provides a way to include an init process in the started > container (`docker run --init`), but I don't think that AWS Lambda does. I don't know anything about Lambda, but if you are running arbitrary commands, then it seems like you could insert something like this: https://github.com/krallin/tini into the mix. I much prefer that to teaching Git to try to do the same thing in-process. -Peff