How does connection pooling work in python multiprocessing?
With python multiprocessing, Let’s assume, I’m creating 10 processes by forking the main process. We know that child process inherit the state of the parent process in its own memory space.
What happens to the pool size when there are multiple SQLAlchemy engine?
With python multiprocessing, Let’s assume, I’m creating 10 processes by forking the main process. We know that child process inherit the state of the parent process in its own memory space.