Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Microservices: Zero Downtime Deployment; Hot reconfiguration on OpenShift

January 27, 2017
Abdellatif Bouchama
Related topics:
ContainersJavaKubernetesMicroservices
Related products:
Red Hat FuseRed Hat OpenShift Container Platform

Share:

    2017: Time for a new resolution and the most important resolution for this year should be to adopt microservices to spend less effort on development and improve your time to market (TTM). Nowadays, there are plenty of tools and frameworks at the disposal of the discerning developer to rapidly build microservices. A few examples include Spring Boot, Vertx, etc.

    Once you build your microservices, the next step is to ensure that these frequent deployments do not impact the availability of the microservice. And this is where the Zero Downtime Deployment (ZDD) comes in, which allows you to deploy a new version of your microservice without interrupting the operation of the service.

    How to ensure a "smooth" deployment?

    I started working on a Camel microservice based on Spring Boot that exposed a Rest service. One of the goals is how to provide ZDD & Hot reconfiguration feature for the users.

    To achieve this goal, I simply have to deploy my microservice on OpenShift, which is based on Kubernetes. What is exciting is that, while successfully handling HTTP requests every second with uninterrupted availability, we have OpenShift perform a zero-downtime rolling upgrade of the service to a new version of the microservice while we're still serving requests per second.

    To demonstrate this, we will start from my microservice example here: camel-springboot-rest-ose

    It is assumed a running OpenShift platform is already running. If not you can find details how to get started (Personally, the one that I use is MiniShift).

    Assuming your current shell is connected to OpenShift, you can type the following command to package your microservice, deploy it on OpenShift, and get the output the logs from the running pods:

    mvn clean install fabric8:deploy -Dfabric8.deploy.createExternalUrls=true fabric:log

    fabric8:log tails the log of our microservice that's deployed via the fabric8:deploy, and we can check when our microservice is started.

    By enabling the following property fabric8.deploy.createExternalUrls, it will create an external URL to reach our Rest Endpoint.

    To get this URL, you simply have to run the following command:

    $ oc get route
    NAME                       HOST/PORT                                                   PATH      SERVICES                   PORT      TERMINATION
    camel-springboot-rest-os   camel-springboot-rest-os-springboot.192.168.42.111.xip.io             camel-springboot-rest-os   <all>     

    Now, we can invoke our Rest endpoint of our camel microservice every second based on the following watch command:

    watch -n1 -c ab -n 10 http://camel-springboot-rest-os-springboot.192.168.42.111.xip.io/api/persons/abouchama
    
    Every 1.0s: curl http://camel-springboot-rest-os-springboot.192.168.42.111.xip.io/api/per...  Tue Jan 24 10:38:05 2017
    
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
       0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0 100    85    0    85    0     0    665
          0 --:--:-- --:--:-- --:--:--   669
    Hey abouchama --> Enjoy your camel microservices | POD : camel-springboot-rest-os-10-4cxix
    

    In the reply of the Rest service, we mention the Pod that handles the request inside OpenShift.

    To hot configure our Camel route, we will use Environment variables. All the endpoints of the route Camel are defined as environment variable properties:

    https://gist.github.com/abouchama/63d1cf619e88fed21643d1748ee97a50

    All these environment variables are declared in fabric8/deployment.yml:

    https://gist.github.com/abouchama/5459b6f6690487b9188b49deb2c15f9f

    Now, to update your Camel route, you only have to update the environment variable in the DeploymentConfig, like the following:

    $ oc env dc/camel-springboot-rest-os CAMEL_LOG_MSG="LOG UPDATED - This request is handled by this POD: {{env:HOSTNAME}}"
    deploymentconfig "camel-springboot-rest-os" updated

    By running this command, a new deployment will be triggered:

    oc get pods -w | grep Running
    [aboucham@aboucham camel-springboot-rest-ose]$ oc get pods -w | grep Running
    camel-springboot-rest-os-10-4cxix            1/1       Running     0          7m
    camel-springboot-rest-os-11-deploy           1/1       Running     0          3s
    camel-springboot-rest-os-11-y00ny            0/1       Running     0          3s
    camel-springboot-rest-os-11-y00ny            1/1       Running     0          31s
    
    

    From the OpenShift web console, we will see the following:

    OpenShift web console

    Once the new pod is deployed and running, you will see the output of our REST service updated in the watch command with the new pod running without any interruption or impact for our service:

    Hey abouchama --> Enjoy your camel microservices | POD : camel-springboot-rest-os-11-y00ny

     

    Scaling

    In addition to ZDD, one of the promises of the microservices is to allow to scale easily in order to get better performance from our service, You've got two 2 ways to do that.

    Using deployment configuration:

    $ oc scale dc/camel-springboot-rest-os --replicas=10
    deploymentconfig "camel-springboot-rest-os" scaled

    or using fabric8 start:

    mvn fabric8:start -Dfabric8.replicas=10

     

    Conclusion:

    It all depends on the frequency of your deployments and your production infrastructure. But if you already use multiple microservices, you have everything to gain from Zero Downtime Deployment, even if you only deploy a new version once a month!


    You can learn more on the fundamentals of microservices using Red Hat open-source software.

    Last updated: August 30, 2023

    Recent Posts

    • Customize RHEL CoreOS at scale: On-cluster image mode in OpenShift

    • How to set up KServe autoscaling for vLLM with KEDA

    • How I used Cursor AI to migrate a Bash test suite to Python

    • Install Python 3.13 on Red Hat Enterprise Linux from EPEL

    • Zero trust automation on AWS with Ansible and Terraform

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue