Instiq
Chapter 4 · Machine Learning Implementation and Operations·v2.0.0·Updated 6/28/2026·~11 min

What's changed: Deepened MLS-C01 Chapter 4 (4 inference modes/MME/async limits/Neo, 3 drift kinds/Model Monitor 4 types/EventBridge retraining, 4 rollouts canary/linear/B-G/shadow/VPC mode+PrivateLink/KMS/Clarify + tables, scenarios, FAQ, traps; ja figures)

4.1Deploying Models

Key points

Serve inference—understand real-time endpoints, batch transform, serverless/async inference, auto scaling, and multi-model endpoints. Choose the serving mode by use case.

A trained model only delivers value once it serves inference. SageMaker offers several deployment modes for different use cases.

4.1.1Choosing an inference mode

Diagram of SageMaker inference options: real-time endpoint (always-on, low latency, one request at a time, auto scaling, for online predictions), batch transform (score a whole dataset at once, no endpoint, offline and cost-efficient, for large bulk jobs), and serverless/async (serverless for spiky/idle, async for large payloads and long-running inference, pay per use); online → real-time, whole dataset → batch, spiky/large → serverless/async.
SageMaker inference options
  • Real-time endpoint: always-on low-latency online inference. Auto scaling follows load.
  • Batch transform: score a whole dataset at once. No endpoint, offline, cost-efficient.
  • Serverless inference: for intermittent/low-frequency traffic; no cost when idle.
  • Async inference: for large payloads/long-running processing; queued, results returned later.
Exam point

Common on MLS-C01: online low latency = real-time endpoint, whole dataset at once = batch transform (no endpoint), spiky/idle traffic = serverless inference, large payload/long-running = async inference, and many small models on one endpoint = multi-model endpoint. If you do not need always-on, use batch/serverless to cut cost.

Continue reading — free sign-up

You're reading the free preview. Sign up free to read this section in full, plus every chapter (including 4+) and all questions.