tags:

views:

685

answers:

2

I'm not new to web publishing, BUT I am new to publishing against a web site that is frequently used. Previously, the apps on this server were not hit very often, but we're rolling out a high demand application. So, what is the best practice for publishing to a live web server?

  1. Is it best to wait until the middle of the night when people won't be on it (Yes, I can pretty much rely on that -- it's an intranet and therefore will have times of non-use)
  2. Publish when new updates are made to the trunk (dependent on build success of course)
  3. If 2 is true, then that seems bad if someone is using that specific page or DLL and it gets overwritten.

...I'm sure there are lots of great places for this kind of thing, but I didn't use the right google search terms.

+1  A: 

@Nick DeVore wrote:

If 2 is true, then that seems bad if someone is using that specific page or DLL and it gets overwritten.

It's not really an issue if you're using ASP.NET stack (Webforms, MVC or rolling your own) because all your aspx files get compiled and therefore not touched by webserver. /bin/ folder is completely shadowed somewhere else, so libraries inside are not used by webserver either.

IIS will wait until all requests are done (however there is some timeout though) and then will proceed with compilation (if needed) and restart of AppDomain. If only a few files have changed, there won't even be AppDomain restart. IIS will load new assemblies (or compiled aspx/asmx/ascx files) into existing AppDomain.

@Nick DeVore wrote:

Help me understand this a little bit more. Point me to the place where this is explained from Microsoft. Thanks!

Try google for "IIS AppDomain" keywords. I found What ASP.NET Programmers Should Know About Application Domains.

lubos hasko
A: 

We do most of our updates in the wee small hours.

Handy hint, if this is an ASP.NET site, whatever time of the day you roll out, drop in an App_Offline.htm file with a message explaining to users that the site is down for maintenance.

Scott Guthrie has more info here:

http://weblogs.asp.net/scottgu/archive/2006/04/09/442332.aspx

Kev