Working With Azure Web App Deployment Slots

Introduction 

By default, each Azure Web App has a single deployment slot called production. In Azure, when you publish your application in a Web app, it goes to the production environment.

In a traditional approach, directly pushing the code in the development server has the following demerits:
  1. While deploying directly to the production server, you application needs a lot of downtime which hampers the user experience as the site is unavailable.
  2. If you have any error in your development or local system, that will get directly reflected in your production environment
  3. The cold start (Initial slowness) for the website can be overcome by these concepts. You can "Warm-up" (all the initialization of site loading) your application in staging.
  4. Here, you have the option to Rollback if any error occurs in production, within a fraction of a second.
  5. To ensure all the functionality of live sites are working correctly, we will follow up the site from a different environment, that is where the slot comes into picture.
So, to work out the above issues, we have these slotting concepts and different environment concepts.

Normally, in an application development lifecycle, the code goes through several phases before it is finally pushed into production, such as,
  1. Development
  2. Test
  3. Production
 
 
To work with Slot, we need to upgrade our pricing tier to Standard or Premium.These features are not available in Basic tier.

 
 
 And here is the Premium which boosts functionality with Slot.

 

Now, I have a ready-made MVC application on my local.
 
Let me create a web app with Standard pricing tier to deploy my application, as shown below.
 
 
 
Finally, it will create a Web App with DebDemo name. Here are the details of this web app.
 
 
Now, let's point to this web app and publish by creating a New Profile.
 
 
 Once the deployment is complete, the site is ready and you can see by the url.
 
 

Now, we will create a slot and deploy the application with changed logic.
 
To add a slot, please check the below image and start your work as per the instructions.

 

Now, add the slot as follows by giving a slot name.

 
 
Once the slot is added, you will get the following info of the slot by clicking on it.

 

What are these deployment slots?

Deployment slots or Azure slots are actually instances of Azure Web Apps which are tied to that website. A deployment slot will carry the name of the Azure Web App + SlotName.

For example, if my Azure Web App is called DebDemo and I create a slot called staging, then my slot will be an Azure Web App with the name DebDemo(staging) and its url will be,

  • http://DebDemo-staging.azurewebsites.net

These slots contain all the features and properties that a normal Web App contains. Now, I will make some changes to my development code and this time, I will publish to local, then in a slot. Here is the change made for local.

  1. public class HomeController : Controller    
  2.    {    
  3.        public ActionResult Index()    
  4.        {    
  5.            string x = WebConfigurationManager.AppSettings["Key1"];    
  6.            ViewBag.name = x;    
  7.     
  8.     
  9.            return View();    
  10.        }    
Here is my View,
  1. @{  
  2.     ViewBag.Title = "Home Page";  
  3. }  
  4.   
  5. <div class="jumbotron">  
  6.     <h2>welcome:@ViewBag.name</h2>  
  7.     <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p>  
  8.     <p><a href="https://asp.net" class="btn btn-primary btn-lg">Learn more »</a></p>  
  9. </div>  
Here is the my app setting to read,
  1. <appSettings>  
  2.     <add key="webpages:Version" value="3.0.0.0" />  

  3.     <add key="webpages:Enabled" value="false" />  
  4.     <add key="ClientValidationEnabled" value="true" />  
  5.     <add key="UnobtrusiveJavaScriptEnabled" value="true" />  
  6.      <add key ="Key1" value="Debendra Dash from Local"/>  
  7.   </appSettings>  
Press F5 to run the site locally.


Now make some change in Web.Realese.config to reflect the exact value in Production.
  1. <appSettings>    
  2.    <add key="Key1" value="Debendra Dash from Production"    
  3.       xdt:Transform="SetAttributes"    
  4.          xdt:Locator="Match(key)"       
  5.         />    
  6.  </appSettings>  
Now Publish the project in Releasese Mode in the slot.

 
 
Now once the Publish is completed,y ou can check the staging site by the above url.
 
Note
So far there is no effect on the production site,vthe production site is running on a different url.

Now if we are really happy with the site testing and want to move this to production we need to choose the swap option as shown below.
 
 
Once you are finished with the swap all your new changes are available in Production and you can see all the changes using the production url.

This is how the swapping works. These are the following settings which become swapped along with your original files.

Settings that are swapped,
  • General settings - such as framework version, 32/64-bit, Web sockets
  • App settings (can be configured to stick to a slot)
  • Connection strings (can be configured to stick to a slot).
  • WebJobs content 
Roll back a production app after the swap.
 
If any errors are identified in production after a slot swap, roll the slots back to their pre-swap states by swapping the same two slots immediately.

Conclusion

In this way, we can see how the swapping works between slots and within no downtime the site get pushed to the production environment.

In my next tutorial, we will discuss about the swapping of general settings  and connection strings between slots.


Similar Articles