Try our conversational search powered by Generative AI!

Anders Wahlqvist
Apr 28, 2020
  4945
(9 votes)

DXP deployment improvements

We've been working on a few improvements related to DXP deployments lately and wanted to share some recent and upcoming updates with everyone, we really hope you'll enjoy these new features!

Deployment API updates

The deployment API has been very well received and we're therefor investing further into it's capabilities by enabling a few new features for the API first in time for it's GA release.

The ones we released recently are:

  • Content syncdown
    The API now supports triggering content syncdown (copying of DBs and/or blobs) from the Production environment to Preproduction/Integration. If you're using the EpiCloud PowerShell module, you can use the Start-EpiDeployment cmdlet with the IncludeDb and IncludeBlob parameters to start a content syncdown.

  • DB export (bacpac)
    This is a completely new endpoint in the API that supports exporting a database to a downloadable bacpac file that can be used for local development purposes for example. The EpiCloud PowerShell module has two cmdlets for managing this, Start-EpiDatabaseExport can be used to start the export (it has a -Wait switch if you want it to wait until the export has finished before it returns). If you don't use "-Wait" there is also a cmdlet for fetching the export status called Get-EpiDatabaseExport.

  • More flexible API key management
    The API key management in the DXP Management Portal has been updated to allow for greater flexibility in how keys are created and can be used (it's now possible to assign access to environments on each key instead of having one key for each environment). For more information, see the documentation.


General deployment updates

We've also been working on a feature that is currently in closed beta, namely Smooth deployments (aka. Zero Downtime Deployments). This feature aims to solve the problem of applying database updates without having to take the site offline.

While this feature is still in closed beta, we've added some improvements to the reset-process of deployments in general which can be used together with the maintenance page option in the DXP Management Portal. There are now three different recovery options after a deployment has completed it first stage:

  • Roll-forward
    We're now enabling you to start a new deployment while the maintenance page stays up if you want fix an unforeseen issue by code.

  • Rollback code and database
    It's now possible to automatically restore the database to the point in time before the database was updated as part of the reset process together with the previous version of the code (see the "-RollbackDatabase" switch of the Reset-EpiDeployment cmdlet in the EpiCloud PowerShell module).

  • Rollback code only
    Rollback only the code to the previous version (like it works today).

Another update we've made that it's possible to validate the restored slot before it's swapped back to receive live traffic (optional step available in the DXP Manangement Portal).

More information about these recovery options and the upcoming Smooth deployment feature is available here.

What's next?

While these new features hopefully provide some significant improvements to the experience when developing for the DXP, we're definitely not done yet. We will soon look into more ways of accessing the blob storage in the different environments, harmonizing the functionality between the DXP Management Portal UI and the deployment API, getting Smooth deployment ready for GA and more.

Meanwhile, make sure you grab the latest version of the EpiCloud PowerShell module and look through the related documentation to these new and updated features:

Deployment API

Deploy using PowerShell

Smooth deployments

DXP self-deployment guide

And finally but definitely not least, please reach out to us with any feedback you might have!

Apr 28, 2020

Comments

Scott Reed
Scott Reed Apr 28, 2020 11:17 AM

It would be good to make sure that new features to the API are also coming to the pass portal as well for people who have not migrated to using the API yet.

John Håkansson
John Håkansson Apr 28, 2020 11:46 AM

Scott, we plan to align features next where possible. Let's see who make it first, the people to embrace CI/CD or Epi to move around some pixels. :)

Eric Markson
Eric Markson Apr 28, 2020 12:52 PM

I've been doing some blog posts about the Deployment APIs and how to create Azure DevOps tasks with them. The one thing that I would love to see is more progresss outputs for the jobs. When looking through the powershell code, I see that its using Write-Progress, which isnt supported in the logs of Azure Devops, so I've had to write my own.

I just got a post out yesterday about the updates in 313, and it doesnt look like theres any progress for the DB Export.

That being said, I absolutely love the scripts, and I'm excited to see what more you guys come up with :)

Apr 28, 2020 01:58 PM

Would it be possible for us to do content sync down of only the content and not the codebase?

Anders Wahlqvist
Anders Wahlqvist Apr 28, 2020 02:48 PM

@Eric, thanks for the feedback! I saw your posts and actually replied just now with a potential workaround for that! :-) We've tried to stick with PowerShell best practises which is to use the Verbose or Progress streams for things like this, basically we want the module to be as "solution agnostic" as possible. But I agree it would've been neat if Azure DevOps had better support for those streams. Write-Host is (depending on what PowerShell version you're running), potentially a bit harmful for PowerShell solutions in general, but in the case of Azure DevOps, it's sort of the way to go. If we use Write-Output instead we break pipelining and pollute the output stream. Hence, we log progress to Verbose and/or Progress streams instead.

Hope that at least makes a little bit of sense :-)

Definitely appreciate your feedback though, we want to make this as straight forward and simple to use as we possibly can, but at the same time allow for as much flexibility as possible. Having a simpler way to track progress is definitely a valid point and we'll see if we can make that easier in the future!

Anders Wahlqvist
Anders Wahlqvist Apr 28, 2020 02:52 PM

@Johan B, Yes, definitely! That's the main use case actually :-) You simply use Start-EpiDeployment without specifying a source web app, example:

Start-EpiDeployment -SourceEnvironment Production -TargetEnvironment Integration -IncludeBlob -IncludeDb

Might be worth mentioning that you won't need to "complete" this deployment since there will be no slot to swap at the end.

Justin Le
Justin Le May 14, 2020 07:36 AM

This is awesome!

@Anders: will it be any downtime for the site because of no slot swap at the end?

Anders Wahlqvist
Anders Wahlqvist May 14, 2020 07:43 AM

@Justin: Glad you like it!

If you copy a DB we will stop the target site during the copy. But I guess that might not be too bad since it would be the Integration or Preproduction environment :-)

If you copy to Production you can include code as well and use different maintenance options.

Scott Reed
Scott Reed May 14, 2020 07:54 AM

@John Håkansson I wish it was always as easy as just "embracing" CI/CD. I have moved companies in the last year and in my previous role I was an Azure Devops master with everything fully embracing CI/CD and Devops culture. However in my current organization there's a lot of challenges to that organizationally and adoption wise which mean I can't just change the core processes. Seeing it from both a CI/CD and devops fayboy like myself and from an organization policy point of few there's always going to be a need to cater for both camps. Hell I've had to push hard to even let us use the Pass portal deploy to Production button instead of emails...

Justin Le
Justin Le May 14, 2020 07:54 AM

Thanks Anders. Will give this a try next release :)

Please login to comment.
Latest blogs
Optimizely and the never-ending story of the missing globe!

I've worked with Optimizely CMS for 14 years, and there are two things I'm obsessed with: Link validation and the globe that keeps disappearing on...

Tomas Hensrud Gulla | Apr 18, 2024 | Syndicated blog

Visitor Groups Usage Report For Optimizely CMS 12

This add-on offers detailed information on how visitor groups are used and how effective they are within Optimizely CMS. Editors can monitor and...

Adnan Zameer | Apr 18, 2024 | Syndicated blog

Azure AI Language – Abstractive Summarisation in Optimizely CMS

In this article, I show how the abstraction summarisation feature provided by the Azure AI Language platform, can be used within Optimizely CMS to...

Anil Patel | Apr 18, 2024 | Syndicated blog

Fix your Search & Navigation (Find) indexing job, please

Once upon a time, a colleague asked me to look into a customer database with weird spikes in database log usage. (You might start to wonder why I a...

Quan Mai | Apr 17, 2024 | Syndicated blog

The A/A Test: What You Need to Know

Sure, we all know what an A/B test can do. But what is an A/A test? How is it different? With an A/B test, we know that we can take a webpage (our...

Lindsey Rogers | Apr 15, 2024

.Net Core Timezone ID's Windows vs Linux

Hey all, First post here and I would like to talk about Timezone ID's and How Windows and Linux systems use different IDs. We currently run a .NET...

sheider | Apr 15, 2024