Deployment progression and testing

MLOps Deployment and Life Cycling

Nemanja Radojkovic

Senior Machine Learning Engineer

Not so fast!

 

speed limit

 

 

 

  • Don't rush to deploy without thorough testing!
MLOps Deployment and Life Cycling

Agenda

TEST TYPES

  • Unit tests
  • Integration tests
  • Smoke tests
  • Load tests
  • Acceptance tests

DEV, DEPLOY, TEST ENVIRONMENTS

  • Development
  • Test
  • Staging
  • Production

 

OUT OF SCOPE: Predictive model performance

IN SCOPE: Testing the overall ML app

MLOps Deployment and Life Cycling

env def

MLOps Deployment and Life Cycling

Unit testing

Checking if independent code units behave as expected

EXAMPLE

Function to test:

def add_two_numbers(x, y):
    return x + y

Unit test:

add_two_numbers(1, 1) == 2
add_two_numbers(2, 3) == 5
MLOps Deployment and Life Cycling

dev changing

MLOps Deployment and Life Cycling

constantly changing

MLOps Deployment and Life Cycling

MLOps Deployment and Life Cycling

MLOps Deployment and Life Cycling

test env 1

MLOps Deployment and Life Cycling

free resources

MLOps Deployment and Life Cycling

integration tests 1

MLOps Deployment and Life Cycling

api testing

MLOps Deployment and Life Cycling

integration testing

MLOps Deployment and Life Cycling

staging env

MLOps Deployment and Life Cycling

copy of prod

MLOps Deployment and Life Cycling

copy of prod 2

MLOps Deployment and Life Cycling

exact versions

MLOps Deployment and Life Cycling

prod copy data

MLOps Deployment and Life Cycling

smoke tests

MLOps Deployment and Life Cycling

load tests

MLOps Deployment and Life Cycling

stress tests

MLOps Deployment and Life Cycling

uat

MLOps Deployment and Life Cycling

A single weak link breaks the system

We must be careful what we introduce in production.

oring

 

 

 

The Challenger shuttle disaster in 1986 was caused by a failed rubber sealing ring

MLOps Deployment and Life Cycling

priorities

MLOps Deployment and Life Cycling

Let's practice!

MLOps Deployment and Life Cycling

Preparing Video For Download...