Back to Category
Transitioning from Monolith to Microservices?
S
SystemLead
Lead Architect
Joined: Jan 2024
Posts: 1,204
Jan 12, 2026
Hello everyone,
I am currently planning an infrastructure overhaul for our major client. We have a massive monolith reaching memory limits on every peak event. Are microservices truly the answer, or should we just vertically scale and restructure the database layer?
Here is a snippet of our current DB load:
SELECT count(*)
FROM user_sessions
WHERE active = true AND created_at > NOW() - INTERVAL '1 hour';
Looking for thoughts from other Lead Architects.
D
DevOpsPro
Cloud Infrastructure Specialist
Joined: Jan 2024
Posts: 1,204
Jan 12, 2026
Microservices introduce massive operational overhead. Unless your team is heavily equipped with Kubernetes experts and distributed tracing tools, you are better off modularizing your monolith first (the 'Majestic Monolith' approach). Vertical scaling SQL DBs is cheaper than managing 50 tiny services.
