show/hide this revision's text 2 added 71 characters in body

I have experience running a single-tenant design with about 40 clients. Each client has separate ASP.NET application files and an SQL Server database. Application core binaries are the same for each client, but clients do have custom modules too.

I would recommend designing the whole system as multi-tenant first, but retaining the option to go single-tenant if necessary. I think that the reason we went single-tenant came from client demand. Many of our clients run the application inside their intranets.

Our business turned out to be very customer-driven, with lots of client-specific tailored features. For this, single-tenant setups fit well. But I don't think it is possible to scale this to a significantly lower price point and a larger customer base.

Pros

  • Good for business software. Easy to customize, but you still get benefits from reuse
  • We can use a SQL Express instances per server as long as each database is under 4GB
  • Lots of separation between clients. For example, each client can have a separate IIS application pool
  • Security at more system-level, not totally application level
  • Single client's software version can be frozen for long periods
  • Bugs do not usually surface on every client
  • New features can be grown nicely based on actual client demand. First clients for a feature are basically beta-testers

Cons

  • Bad for consumer software. Don't expect to scale much
  • Maintenance is labor-intensive: updates, backupsetc, debugging client-specific issues...
  • Quality control is harder when versions are slightly different. Unexpected troubles surface after updates
show/hide this revision's text 1

I have experience running a single-tenant design with about 40 clients. Each client has separate ASP.NET application files and an SQL Server database. Application core binaries are the same for each client, but clients do have custom modules too.

I would recommend designing the whole system as multi-tenant first, but retaining the option to go single-tenant if necessary. I think that the reason we went single-tenant came from client demand. Many of our clients run the application inside their intranets.

Our business turned out to be very customer-driven, with lots of client-specific tailored features. For this, single-tenant setups fit well. But I don't think it is possible to scale this to a significantly lower price point and a larger customer base.

Pros

  • Good for business software. Easy to customize
  • We can use a SQL Express instances per server as long as each database is under 4GB
  • Lots of separation between clients. For example, each client can have a separate IIS application pool
  • Security at more system-level, not totally application level
  • Single client's software version can be frozen for long periods
  • Bugs do not usually surface on every client
  • New features can be grown nicely based on actual client demand. First clients for a feature are basically beta-testers

Cons

  • Bad for consumer software. Don't expect to scale much
  • Maintenance is labor-intensive: updates, backups etc.
  • Quality control is harder when versions are slightly different. Unexpected troubles surface after updates