Good Book on Scaling Asp.Net applications - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:54:20Z http://stackoverflow.com/feeds/question/48026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications 15 Good Book on Scaling Asp.Net applications Gulzar 2008-09-07T01:50:15Z 2009-01-14T02:07:54Z <p>Can somebody suggest a good solid book on scaling Asp.Net applications? One that could potentially scale to millions of users.</p> <p>Some of the books listed here are pretty good (<a href="http://highscalability.com/book-store" rel="nofollow">http://highscalability.com/book-store</a>). They cover a range of techniques which can be used independently of the technology used.</p> <p>What I was looking for is something specific to Microsoft world, from someone who went through all that pain (like <a href="http://highscalability.com/myspace-architecture" rel="nofollow">myspace</a>). This might cover some techniques on some of the stuffs like using distributed caching (<a href="http://www.25hoursaday.com/weblog/2008/06/06/VelocityADistributedInMemoryCacheFromMicrosoft.aspx" rel="nofollow">velocity</a>), doing away with established database practices like normalization etc. </p> <p>I went through the MSDN stuffs, blogs but I guess nothing beats a good book huh.. Or, maybe I should wait for <a href="http://msdn.microsoft.com/en-us/magazine/cc700349.aspx" rel="nofollow">SSDS</a>.</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48032#48032 8 Answer by Dale Ragan for Good Book on Scaling Asp.Net applications Dale Ragan 2008-09-07T01:56:51Z 2008-09-07T01:56:51Z <p>I don't know of a book, I have always just learned off the internet. Then came this <a href="http://msdn.microsoft.com/en-us/magazine/cc500561.aspx" rel="nofollow">MSDN article</a> by Richard Campbell and Ken Alstad and it is definitely a must read.</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48045#48045 7 Answer by FlySwat for Good Book on Scaling Asp.Net applications FlySwat 2008-09-07T02:21:14Z 2008-09-07T02:41:16Z <p>Well, I can't give you a recommendation on books, but I can give you a few pointers from my own personal experience (Our team runs an e-commerce/Customer Portal site that gets 2 million+ unique visitors per hour).</p> <p>Some Notes:</p> <ul> <li>At this kind of load, we have to scale out. We currently run small cluster (13? I think) behind redundant F5 BigIP Load Balancers(<a href="http://www.f5.com/products/big-ip/" rel="nofollow">http://www.f5.com/products/big-ip/</a>). Hardware Load Balancers are great!</li> <li>Because we are in a farm, the default ASP.NET Session provider is worthless, however because Session is pluggable, we were able to write out own session provider without changing any application code. This allows us to run a dedicated state server.</li> <li>We heavily leverage robust (kind of) middle tier solutions, we use SAP/R3 for purchase and inventory management, and Tibco for the business tier for dealing with pre-existing customers. These applications run on their own farms, and for the most part communicate with us via SOAP.</li> <li>We currently use two boxes dedicated to running SQL Server, this hosts just the catalog database, not the customer database, that database sits on a 32 machine farm.</li> <li>The SQL Server databases are definitly a pinch point, and can easily overload and die during peak hours. Because of this we cache heavily on the application level. Our own entity framework will cache all stored procedure calls and avoids executing a call if there is one in the cache.</li> <li>This Cache is built out on each application server independantly, as having a single cache server would just be a point of failure.</li> <li>If we were to invalidate all of the caches at once, it takes about 15 minutes under our current traffic load to rebuild it completely just from customer usage. However, this spikes our SQL Servers to 100% cpu.</li> <li>When we invalidate our cache, we do it one app server at a time, rolling each through during non peak hours.</li> </ul> <p>That said, there is lots of room for improvement. We can further optimize our databases (They are nearly 100% read, so cached denormalized views are good option, so is additional clustered indexes).</p> <p>We also have been working with our content team to lighten the actual page sizes. Some of our pages can be up to 500k, which is horribly in my opinion. We are also investigating using a CDN to serve all static content to free up our servers to handle just dynamic content.</p> <p>Anyways, This just gives you a little window in the life that is large scale website programming, and hopefully I didn't scare you :D</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48052#48052 1 Answer by Dale Ragan for Good Book on Scaling Asp.Net applications Dale Ragan 2008-09-07T02:30:23Z 2008-09-07T02:30:23Z <p>@<a href="#48045" rel="nofollow">Jonathan </a>- Do you put your ViewState in the database also or do you keep it in the page? We put the ViewState in the database to help alleviate the page size.</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48071#48071 0 Answer by FlySwat for Good Book on Scaling Asp.Net applications FlySwat 2008-09-07T02:47:42Z 2008-11-03T15:17:20Z <blockquote> <p>@Jonathan - Do you put your ViewState in the database also or do you keep it in the page? We put the ViewState in the database to help alleviate the page size.</p> </blockquote> <p>We currently serve the ViewState in form. I've been contemplating this as part of our "Decrease Page Load" initiative, and I'd love to get some feedback on moving Viewstate, so I opened a new question:</p> <p><a href="http://stackoverflow.com/questions/48070/moving-viewstate-out-of-the-page">http://stackoverflow.com/questions/48070/moving-viewstate-out-of-the-page</a></p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48073#48073 2 Answer by Gulzar for Good Book on Scaling Asp.Net applications Gulzar 2008-09-07T02:48:06Z 2008-09-07T02:48:06Z <p>@<a href="#48071" rel="nofollow">Jonathan </a>- Good post. Some of the points are very valid, especially in the corporate world. What I was thinking of mostly was Web2.0 apps like Twitter, Flickr etc. How to build such applications for the web using MS technologies? Internet is a great resource but I was looking for some good bed-time reading. :)</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48164#48164 3 Answer by Hafthor for Good Book on Scaling Asp.Net applications Hafthor 2008-09-07T05:00:36Z 2008-09-07T05:00:36Z <p>"Improving .NET Application Performance and Scalability" from the Patterns and Practices Group inside Microsoft (<a href="http://msdn.microsoft.com/en-us/library/ms998530.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms998530.aspx</a>) It is available as a PDF (<a href="http://www.microsoft.com/downloads/details.aspx?familyid=8A2E454D-F30E-4E72-B531-75384A0F1C47&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=8A2E454D-F30E-4E72-B531-75384A0F1C47&amp;displaylang=en</a>) and a real book. It's a little old but it does have some excellent specific to .net advice on the topic.</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/49783#49783 2 Answer by serg10 for Good Book on Scaling Asp.Net applications serg10 2008-09-08T14:15:35Z 2008-09-15T16:03:59Z <p>Steve Souders <a href="http://oreilly.com/catalog/9780596529307/" rel="nofollow">High Performance Web Sites</a> is an excellent resource for web application developers from all backgrounds. It is not specific to any language - instead it lays out key rules to follow when implementing a web application that needs to really scale and perform.</p> <p>Most interestingly, it also presents his findings of how well the top ten sites on the web adhere to these rules. As he works at Yahoo!, it is not surprising that they score pretty well. MySpace and eBay (ASP.net iirc) don't do anywhere near as well...</p> <p>Great read. Highly recommended.</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/64259#64259 0 Answer by Quibblesome for Good Book on Scaling Asp.Net applications Quibblesome 2008-09-15T16:06:07Z 2008-09-15T16:06:07Z <p>If you want to see how things get at the end of the silly scale take a look at what <a href="http://highscalability.com/myspace-architecture" rel="nofollow">MySpace does</a>.</p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/156163#156163 1 Answer by azamsharp for Good Book on Scaling Asp.Net applications azamsharp 2008-10-01T03:43:10Z 2008-10-01T03:43:10Z <p>Might be a little late on this but here is a very good book from the CTO of PageFlakes. It covers lot of different things related to performance. Here is the URL: </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596510500" rel="nofollow">http://www.amazon.com/Building-Web-2-0-Portal-ASP-NET/dp/0596510500/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1222832569&amp;sr=8-1</a></p> http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/357711#357711 0 Answer by joeysim for Good Book on Scaling Asp.Net applications joeysim 2008-12-10T21:41:31Z 2008-12-10T21:41:31Z <p>The best book I've ever read regarding scaling web application is not a Asp.Net one, but is a must for all you web architects out there - <a href="http://scalableinternetarchitectures.com/" rel="nofollow">Scalable Internet Architectures</a></p>