How to do software deployments with confidence

By: mwatson
  |  March 28, 2024
How to do software deployments with confidence

Developers have no idea if they are really ready to ship their new version.

Does this happen in your office?

You just finished a sprint and we are ready to push it to production. You ask everyone on the team, including the development manager, how they feel about pushing to production…. And you get Lumbergh…

umm yeah

The problem is that the tasks are all done, and “testing” is finished, but nobody has any real idea if the code is going to blow up spectacularly in production, or work just fine. How often do you delay releases because you are nervous about potential problems? What issues are lurking right beneath the surface?

The #1 problem with agile development is confidence in your releases

There is a lot of risk anytime you do a deployment. How do you confidently measure that risk?

Using your spidey senses is not good enough.

Since nobody knows… eventually someone says…

fuckitshipit

Then the next day looks about like this…

worked fine in dev

Is agile working well for you?

Velocity is not the goal of agile development. Shipping new value to your customers as soon as possible is the goal. However, no part of that means to ship crappy code as quick as possible. Going fast  in the wrong direction is not the right kind of velocity you are after.

In your last sprint, what % of the work items were bug fixes?

If you spend a lot of time on bug fixes and not on new features or improvements, then your current velocity is not working. You need to put more focus on quality and less time on velocity.

One of the great things about agile is shipping things quickly and being able to take feedback about it to quickly make changes. This feedback from your users is critical to guide what development work should be done.

But… your users aren’t the only ones providing you feedback!

Listen to your users and your code for feedback

What developers need is feedback loops at every step of the development cycle. While writing their code, testing it, building it, deploying it, in QA, and in production. Utilizing this constant feedback can help you quickly identify problems before they get to production.

How to integrate feedback into your development process

Before starting the next step in the development process, you need to review feedback from the previous step. It all starts with the start of the process, planning your next sprint!

Before you finish planning the next sprint… how are things going in production?

Performance review – First thing you need to do is review how things are working in production. Here are some things you should do before every sprint planning meeting:

  • Review application errors that are occurring
  • Ensure most important web requests are performing well
  • Look for poor performing SQL queries
  • Decide if any web requests need any performance tuning
  • Verify if all changes from the previous release are performing well

Reviewing your APM solution to see how things are going in production is a critical feedback loop. You want to find potential performance problems before your customers do. It is also understand performance before your next release so you have some sort of baseline to compare to.

The best time to find bugs is while writing them!

The best time to find and prevent bugs is while creating them. As you start working on new work items, here are some suggestions on how to improve code quality.

“When informed about a problem whilst in the moment I’m in a much better position to make corrections or come up with alternative solutions. Without a quick feedback loop, the passing of time makes it difficult to get into the initial mindset which caused the problem to begin with.” – Vince Panuccio

IDE plug-ins – After using tools like Resharper, it is hard to live without them. They are awesome at helping point out possible places in your code where common exceptions or problems could occur.

Code level transaction tracing – Depending on which programming language you are using, there are amazing tools now that can show you most key things about what your code is doing and how long it takes. These tools are awesome to help you understand what SQL queries, web services, and other things your code is calling. Check out our list of these tools included in our list of APM tools.

Code reviews – Having a second set of eyes look at your changes is never a bad thing, especially if it is a critical part of the code or complicated. Don’t nitpick over silly things like how people named variables. Focus on the things that matter and ask questions.

Automate your builds and deployments to remove human error

Build server – Having an automated build and deployment process is critical. If your current process involves asking Bob (what else would you name the builder?) to do a build and push code manually, your process is full of human error and too dependent on Bob. You should be using tools like Octopus Deploy, Jenkins, Continuum, TFS, or others to automate your build and deploy process to make sure it is done the same way every single time and Bob doesn’t skip step #3.

Unit tests – I personally don’t believe that you need unit tests for everything. They shouldn’t be a replacement for a compiler. But I do think they are highly valuable for testing complex scenarios, business rules, etc. Have your build server run your units test to help validate the build before it deploys.

Review code commits – One of my favorite things about a good build and deployment tool is it’s ability to show you exactly what code commits were included in the new build. This is a good way to verify if anything has sneaked its way in that you weren’t aware of.

Your build server is a good first line of defense to make sure nobody checked in bad code. The last thing you want to do is go to push your code to production and find out you can’t even compile.

Collaborate with QA and do performance reviews

Everyone hates QA. I get it. I really do. My favorite card in Developers Against Humanity is about putting the entire QA team on the bottom of the ocean. But QA can actually be very helpful if you work with them and give them good guidance on what to help test. You can do it… work with them!

Actually tell QA what to test – OK this seems obvious… but nobody does it. If you want your QA team to be very helpful and find problems, it is critical that you tell them as many details as possible about what they should be testing for. I think there should be a separate and required field in your ALM tool for this!

Performance review – Earlier I mentioned important things you should be reviewing in production to assist in planning your next sprint. You should be doing the same sort of things in QA to see how performance changes between builds and looking for new errors.

Synthetic tests – Use selenium or some other tool to setup and run automated synthetic tests for basic and key parts of your application. Make sure a user can login, navigate to key pages, etc.

After your software deployment, quickly check these things!

During your deployment can be a nervous time. The last thing you want to do is push code, do a quick test to make sure your app loads, and call it done. If you want to sleep at night, you need to do a few more things!

Watching production after your software deployment is a critical part of the feedback you need to ensure that your release was a success. If things don’t look right you can quickly fix the problem or decide if you have to roll back the deployment. Utilize your various monitoring and APM tools to verify these items.

Look for new errors – After almost every single release you are likely to see some new errors being thrown by your code. Be sure to check your error tracking tool to see if anything new is happening.

Check your error rates – A certain amount of errors is normal in most apps. A certain amount of noise, goofy errors, transient errors, etc. Ensure that the overall level of errors is consistent with normal and hasn’t rapidly increased.

Watch requests per minute – Make sure that the overall traffic rate on your site looks normal. If traffic drastically goes up or down either way, something could be wrong.

Review top requests – Double check that your key web requests that get accessed a lot still look normal.

Database performance – It is also a good idea to make sure your database and potentially other dependencies still look normal. If you pushed any SQL schema changes, there is definitely a chance things could be better or worse.

Utilize feedback to build release confidence

Every step of the development process can provide a lot of feedback about the quality of your code and software. Utilizing these quick feedback loops can help you deploy more often and with more confidence.

Also check out my article about Essential developer tools to find bugs… before they get to production. I discuss some great free and low cost tools that every development team should have.


Want more power to write better code faster and catch any issues before they get to production?

Get Prefix Power on a server!
Get Prefix Power on a server!

Improve Your Code with Retrace APM

Stackify's APM tools are used by thousands of .NET, Java, PHP, Node.js, Python, & Ruby developers all over the world.
Explore Retrace's product features to learn more.

Learn More

Want to contribute to the Stackify blog?

If you would like to be a guest contributor to the Stackify blog please reach out to [email protected]