• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Why separate application server from database??? WHY???

DWW

Platinum Member
Why do people separate application servers directly from database systems... even though they have to buy two servers.

What is the rational behind this????

If failure rate of quality components is say 0.27% chance a year per machine (made up figure for home made server... 1 day out of a year pretend for something very active and x86) then you increase your chances for more downtime if you introduce a whole other server into the equation to 2 days out of a year (or whatever expected downtime is...)

I never understood it. Especially if the application requires low CPU usage, but puts through tons of database inserts and selects.
 
It's usually part of a careful planning process that includes future possibilities too. Just because that database is small now, doesn't mean it won't become unweildy and large in the future. Just because that application server isn't doing much server side processing doesn't mean that future revisions won't do that. It's really about overhead and future proofing. Plus, you have to consider other things too, such as backup routines, security (that's a big one right there) and numerous other issues.
 
Back
Top