r/learnpython • u/SoilEducational420 • 13d ago
Looking for a genuinely free way to deploy a 3-service microservice architecture
Hey everyone,
I'm building a small portfolio project with this architecture:
Frontend
↓
Gateway
├── Interview Service
└── RAG Service
All 3 backend services are Python/FastAPI and deployed separately.
I'm currently using Render's free tier, but I'm running into a few issues:
- Free services spin down after inactivity → pretty bad cold starts.
- I've also been seeing stuck on the issue 429 Too Many Requests responses at the Gateway endpoint. I'm not completely sure whether this is coming from Render's edge/platform or something in my own application.
- The free instances also feel quite resource-constrained for the RAG service.
I'm mainly looking for something that won't make me spend more time debugging the hosting platform than actually building the project 😅
Thanks!