Sunday Daily Thread: What's everyone working on this week?

r/python 11 hr ago

Weekly Thread: What's Everyone Working On This Week? 🛠️ Hello r/Python! It's time to share what you've been working on! Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to! How it Works: Show & Tell: Share your current projects, completed wor…

When scaling application pods with SQLAlchemy pools, who redistributes existing connections?

r/python 1 d ago

I’m running application pods that use SQLAlchemy’s connection pool to connect to PostgreSQL. Each pod has its own pool, so when I scale the application from, say, 3 to 10 replicas, the new pods create new pools while the existing pooled connections remain open. If PostgreSQL has read replicas behind…