TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Multi-tenant vs. Multi-instance architecture

3 pointsby samrohn778almost 7 years ago
What are the pros and cons? More interested to know about the multi-instance approach. Given a chance to decide, what all criteria you will use to evaluate them for a Saas product.

1 comment

ryanchantsalmost 7 years ago
Multi-tenant is almost always my preference. Data can still be segregated per-client at that database level. Multi-tenancy with a solid session caching layer will allow you to horizontally scale as needed.<p>Multi-instance will require setting up new servers per client. Potentially increasing cognitive overhead of which servers are handling what. Definitely increasing costs, as each server will have idle CPU cycles that could have been used to serve up a smaller clients.