GithubHelp home page GithubHelp logo

saferollout's Introduction

simple-rollout auto-saferollout train

Safe rollout of ML models using Azure ML Managed Online Endpoints

User story

"As an ML engineer, I want to use devops pipelines to safely rollout new version of a model in production with validation gates inorder to maintain production SLA and efficiently manage the rollout process"

This repo shows how you can automate the rollout of a new version of a model into production without distruption. It also shows how you can do auto safe rollout by automatically validating if metrics are within threshiold in the release/validation gates.

Refresher on Endpoints concept

After you train a machine learning model, you need to deploy the model so that others can use it to perform inferencing. In Azure Machine Learning, you can use endpoints and deployments to do so.

Endpoint concept

An endpoint is an HTTPS endpoint that clients can call to receive the inferencing (scoring) output of a trained model. It provides:

  • Authentication using key & token based auth
  • SSL termination
  • Traffic allocation between deployments
  • A stable scoring URI (endpoint-name.region.inference.ml.azure.com)

A deployment is a set of compute resources hosting the model that performs the actual inferencing. It contains:

  • Model details (code, model, environment)
  • Compute resource and scale settings
  • Advanced settings (like request and probe settings)

You can learn more about this here

Safe rollout concept

The below illustration shows how users can gradually upgrade to a new version of the model in a new deployment Vn+1 from the currently running version in deployment Vn. At every step it is a good practice to validate that operational metrics are all within threshold (e.g. response time tail latencies , #errors etc) before opening up more traffic. We have implemented this in this repo.

Saferollout process

Design of safe rollout pipeline

In the example here you will see the flow from training -> model registration -> safe rollout of new model version into production. You will see how we use validate metrics github action to automate the validation of operational metrics at very step of the rollout.

Saferollout pipeline design

Annotated output of auto safe rollout pipeline

This is how the output of the auto safe rollout run in this repo looks like. Every validation gate has a 5 min wait timer (configurable). As part of the protection rules you can also enable human approval.

Saferollout GH action pipeline

Safe rollout semantics

It is important to have clean set of semantics so that users share same vocabulary while implementing non trivial ci/cd pipelines. We use tags to keep track of the deployment types.

Deployment can be of three types:

  • PROD_DEPLOYMENT: As the name suggests, the main model version serving prod traffic
  • OLD_PROD: You might want to keep the last known good model for a while before deleting it.
  • Release candidate: The new version of the model that you want to test before making it the production model. In the example in this repo since we have only one release candidate, we can get away without tagging this explicitly since we know the deployment name (we generate a unique name at the beginning of the ci/cd script). Good idea to tag this if you want to explicitly track this.

You can add additional tags to track for e.g. experimental models that you might have.

Saferollout semantics

In the above diagram, the columns indicate the timeperiods (T0, T1 etc). The rows has the deployment versions. At T0 we have deployment Vn (version n) tagged as production and has 100% traffic. At T1 we have Vn+1 as release candidate taking 0% traffic. Gradually when it takes 100 % traffic it gets tagged as production and Vn becomes OLD_PROD and eventually gets deleted. We use the tags so that from the ci/cd scripts you will be able to identify the various types of deployment.

Getting started

Just fork this repo and follow instructions to get started.

References

  1. Validate metrics github action
  2. German Creditcard Datasetfrom UCI/kaggle
    Dua, D. and Graff, C. (2019). UCI Machine Learning Repository [http://archive.ics.uci.edu/ml]. Irvine, CA: University of California, School of Information and Computer Science.

saferollout's People

Contributors

rsethur avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.