eBook CSLA Overview Question

eBook CSLA Overview Question

Old forum URL: forums.lhotka.net/forums/t/10001.aspx


rxelizondo posted on Friday, January 28, 2011

 

Hi guys, 

Page 25, on section titled “High-Scalability Smart Client”, states: 

Going further, it is possible to trade performance to gain scalability by moving the Data Access layer to a separate machine. Single or 2-tier configurations give the best performance, but they don’t scale as well as a 3-tier configuration would….. 

---------------------- 

My question is, how is moving from a 2 to a 3 tier CSLA architecture makes the smart client application more *scalable*? 

Assuming that the database server is infinitely fast, to me, a 2 tier configuration will always be more scalable than a 3 tier configuration for the simple fact that on a 2 tier configuration all that happens is that new client computers come on line and that is it, no scalability issues there whatsoever. 1 or 1000000 clients, each is responsible to do its own thing. 

On the other hand, on a 3 tier configuration I will have to constantly add new app servers to meet the demand of my constantly growing client base and for what? Taking the data access layer load out of the client into the server does not make my app more scalable does it? If anything it could make my app *perform* better but that is only assuming that there is a lot of number crunching happening on the data access layer and that I have a super fast server that can do the operation many times faster than the client can do. But then again, we are talking *performance* improvements here, not *scalability*. 

Isn’t “scalability” more of a hardware domain that software domain? Consider web servers running on a web farm under the control of a load balancer server. My web app will be more scalable under this infrastructure, but that is totally transparent to me. Even if my web app was a *single* tier app so to speak, It will still be scalable, but that is thanks to the hardware infrastructure, not because of my software n-tier design. 

Keep in mind that the question revolves around the CLSA framework / Smart Client scenario and about moving the data access layer from the client to a server. 

Anyway, I am sure I am missing something obvious, I am probably not looking at the big picture. 

Thanks.

 

RockfordLhotka replied on Friday, January 28, 2011

I've never been in a position where I could assume the database was infinitely fast. In fact, as applications scale the database server is often the first major bottleneck.

The point of that discussion is to suggest that a 3-tier physical model with a smart client is an excellent balance of workload. As much processing as possible is done on the client workstation - hardware dedicated to each user.

The app server acts as a buffer between clients and database server. In many cases you can cut the number of database connections by a factor of 100 (give or take), so 5000 users might use 50 database connections. This offloads a lot of overhead from the database server. And of course the app server offers opportunities for caching, some processing, etc. It is easy to scale out with app servers, so even if they do some processing it is cheap and easy to add more of them.

The database server is the hardest to scale. Scaling out means federating data and other complex techniques. Scaling up means getting ever larger and rapidly more expensive hardware - many-core servers, fiber backbones, SANs, etc. So the lower the overhead at this tier the better.

Copyright (c) Marimer LLC