We have an ASP.NET MVC3 Web Application which consists of following:
- Website (MVC3)
- Data Access Service (WCF + EF)
- Database Server (SQL Server 2008 R2)
We were suggested to implement an architecture to the following for performance benefits:
- Web Server Cluster (Website + Data Access Service)
- It has Round Robin Load Balancing
- Each server in this cluster has a Cache (read-only) database
- We have a set of SPs that we can distinctly divide into two categories - Read SPs and Write SPs
- Each Read SP will connect to Cache DB and each Write SP will connect to Write DB
- Database Server(s) with Replication/Mirroring
- This is the Write DB.
- Whenever it changes, it propogates all the changes to all the Cache DBs
- In addition to that, it has replication/mirroring implemented so it has backups when it goes down.
This is very rough idea and I am not sure it will give our system a performance boost.
The argument in favor of it was 80% of the times, the operations are read-only. They can be made on Cache DBs (since there are configured to be read-only, they are faster). The other 20% can be made on Write DBs.
But, I have following questions:
- Read-Only Configuration: can we actually configure Cache DBs to be read-only? Since Write DB will need to push changes to them whenever it changes.
- Sync: with all this complexity over the network, how easy it is to make sure that everything is in sync? Network Latency: and what about network overheads to keep everything in sync?
- Complexity and Maintenance: is it really worth the added maintenance overheads and the added complexity to the system?