Container Health Checks and Startup Configuration

Ma Mahalakshmi V Updated 19 Sep 2026
8 min read ·Lesson 193 of 224

A Running Process Is Not the Same as a Healthy One

A container orchestrator (or even plain Docker) can tell you whether a process is running. It cannot tell you, on its own, whether that process is actually able to do useful work. An OpenAI SDK service can be "running" while its event loop is deadlocked, while it has exhausted its connection pool, or while it started successfully but a required configuration value was silently defaulted to something wrong. Health checks exist to answer a more useful question than "is the process alive": is this instance able to correctly handle traffic right now?

This distinction is formalized in most container orchestration systems as two separate probes with different purposes: liveness and readiness.

Liveness vs. Readiness

A liveness check answers: "should this container be restarted?" It should be cheap, fast, and check only that the process's core event loop is responsive — not that every downstream dependency is working. If a liveness check fails repeatedly, the orchestrator's response is to kill and restart the container, on the theory that a stuck process is better replaced than left running.

A readiness check answers a different question: "should traffic be sent to this container right now?" A container can be alive (the process is fine) but not ready (a dependency it needs, like a shared cache or database, is temporarily unreachable). When a readiness check fails, the orchestrator stops routing new requests to that instance without killing it — giving it a chance to recover on its own once the dependency comes back.

AspectLivenessReadiness
Question answeredIs the process stuck and needs restarting?Should traffic be routed here right now?
Failure responseRestart the containerRemove from load-balancing pool (no restart)
What it should checkThe process itself respondsDependencies needed to serve real requests
CostMust be very cheap; runs frequentlyCan be slightly more thorough, but still fast
Should it call the OpenAI API?NoAlmost always no (explained below)

Conflating the two is a common source of production incidents: a liveness check that verifies a downstream dependency will restart a perfectly healthy process every time that dependency has a hiccup, causing a self-inflicted outage exactly when things are already fragile.

Implementing Health Endpoints

For a FastAPI-based OpenAI SDK service, the conventional pattern is two lightweight HTTP endpoints:

import time
from fastapi import FastAPI, Response

app = FastAPI()
app.state.startup_complete = False
app.state.started_at = None


@app.on_event("startup")
def mark_startup_complete() -> None:
    # Configuration was already validated in create_app() (see Lesson 1).
    # Reaching this point means the process is ready to serve traffic.
    app.state.startup_complete = True
    app.state.started_at = time.monotonic()


@app.get("/healthz")
def liveness() -> dict:
    """Liveness: proves the event loop is responsive. No dependency checks."""
    return {"status": "alive"}


@app.get("/readyz")
def readiness(response: Response) -> dict:
    """Readiness: proves the app finished startup and can serve real requests."""
    if not app.state.startup_complete:
        response.status_code = 503
        return {"status": "not ready", "reason": "startup not complete"}

    has_api_key = bool(getattr(app.state, "config", None) and app.state.config.openai_api_key)
    if not has_api_key:
        response.status_code = 503
        return {"status": "not ready", "reason": "missing configuration"}

    return {"status": "ready"}

liveness() deliberately does almost nothing — it returns a fixed response the moment the request reaches it. If this endpoint responds at all, it proves the web server's request-handling loop is not deadlocked. It intentionally does not check the OpenAI API, a database, or any other dependency, because none of those failures mean this process is broken — they mean something else is, and killing this container would not fix that, only add a restart storm on top of it.

readiness() checks two things: that application startup fully completed (startup_complete), and that the configuration this instance needs is actually present. Neither check makes a network call. This is a deliberate and important design decision, not an oversight — the next section explains why.

Why Readiness Checks Should Not Call the OpenAI API

It is tempting to make the readiness check "more thorough" by having it actually call client.responses.create(...) to verify the OpenAI API is reachable and the key is valid. This is almost always the wrong choice, for three concrete reasons:

  1. Cost. Orchestrators typically call the readiness endpoint every few seconds, for every running replica. If each check makes a real API call, you are paying for and rate-limiting against health checks, not real user traffic — and this cost scales with the number of replicas, which is exactly the situation Lesson 8 discusses under horizontal scaling.
  2. Shared rate limits. A transient 429 from the OpenAI API — perhaps because another replica's real traffic briefly hit a rate limit — would mark this healthy replica as not ready, removing capacity from the pool at precisely the moment demand is high. This can cascade: fewer ready replicas means more load per replica, which increases the chance of more 429s, which marks more replicas not ready.
  3. False negatives from transient network blips. A readiness check with a strict timeout calling an external API over the network is far more likely to fail for reasons that have nothing to do with whether your application can actually serve requests a moment later.

The general principle: readiness checks should verify your own process's internal state and locally available configuration, not the availability of a third-party API you do not control. If you genuinely need to detect sustained OpenAI API outages, that belongs in monitoring and alerting (Lesson 9), not in a per-replica readiness probe that controls traffic routing.

Startup Configuration: start-period and Grace Windows

Health checks need to account for the fact that an application takes some nonzero time to start — loading configuration, constructing clients, warming up any local caches. If the orchestrator starts checking readiness immediately and treats the first few failures as fatal, a perfectly normal, slightly slow startup looks like a broken deployment.

This is what the start-period in a Docker HEALTHCHECK (introduced in Lesson 3) and the equivalent initialDelaySeconds in other orchestrators are for — a grace window during which failed checks do not count against the container.

HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
    CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/healthz', timeout=3)" || exit 1

Reading these parameters concretely: --start-period=15s gives the container 15 seconds after it starts before the first failing check counts at all — long enough for create_app() from Lesson 1 to run and configuration validation to complete. --interval=30s is how often the check runs afterward. --retries=3 means three consecutive failures are required before the container is marked unhealthy — a single slow response due to a brief garbage-collection pause should not trigger a restart. --timeout=5s bounds how long a single check attempt is allowed to take before it counts as a failure itself.

Note: Exact probe configuration syntax differs across platforms — Docker Compose, Kubernetes, and managed container platforms (AWS ECS, Google Cloud Run, Azure Container Apps) each express liveness, readiness, and startup grace periods slightly differently. The concepts in this lesson — cheap liveness, dependency-aware readiness, and a startup grace window — apply universally; only the configuration keys differ. Check your specific platform's current documentation for exact field names.

Testing Health Logic Without a Running Server

Because readiness() reads from app.state rather than performing I/O, its logic can be tested directly without starting an actual HTTP server:

class FakeState:
    def __init__(self, startup_complete: bool, has_key: bool) -> None:
        self.startup_complete = startup_complete
        self.config = type("Cfg", (), {"openai_api_key": "sk-fake" if has_key else ""})()


class FakeResponse:
    def __init__(self) -> None:
        self.status_code = 200


def readiness_logic(state: FakeState) -> tuple[dict, int]:
    response = FakeResponse()
    if not state.startup_complete:
        response.status_code = 503
        return {"status": "not ready", "reason": "startup not complete"}, response.status_code
    if not state.config.openai_api_key:
        response.status_code = 503
        return {"status": "not ready", "reason": "missing configuration"}, response.status_code
    return {"status": "ready"}, response.status_code


def test_not_ready_before_startup_completes() -> None:
    body, status = readiness_logic(FakeState(startup_complete=False, has_key=True))
    assert status == 503
    assert body["reason"] == "startup not complete"
    print("PASS: readiness reports not ready before startup completes")


def test_ready_once_startup_and_config_are_present() -> None:
    body, status = readiness_logic(FakeState(startup_complete=True, has_key=True))
    assert status == 200
    assert body["status"] == "ready"
    print("PASS: readiness reports ready once startup and config are complete")


test_not_ready_before_startup_completes()
test_ready_once_startup_and_config_are_present()

Extracting the decision logic into a plain function (readiness_logic) that takes a state object as a parameter — rather than testing the FastAPI route directly — follows the same dependency-injection pattern used throughout this course: the interesting behavior (what makes an instance "ready") is isolated from the web framework plumbing, so it can be tested in milliseconds with no server, no network, and no real configuration object.

Common Mistakes

Making the liveness check verify external dependencies. This causes an orchestrator to restart a perfectly healthy process because of a problem restarting cannot fix, often making an outage worse through repeated restart cycles.

Calling the real OpenAI API from a readiness probe. Beyond the direct cost of frequent API calls purely for health checking, this couples your traffic-routing decisions to the availability of a third-party service in a way that can cause cascading readiness failures under load, as described above.

Omitting a startup grace period. Without one, a container that takes a few extra seconds to initialize — entirely normal under load or during a cold start — can be marked unhealthy and killed before it ever gets a chance to serve a request.

Best Practices

Keep liveness checks trivially cheap and free of any dependency on external systems — they exist only to detect a genuinely stuck process.

Make readiness checks verify local state: configuration presence, internal startup completion, and any resources the process itself manages — not third-party API reachability.

Always configure a startup grace period sized generously enough for your slowest realistic startup path, and prefer requiring several consecutive failures (not a single blip) before an orchestrator takes action.

0 Comments

Reviewed before they appear

No comments yet.

OpenAI SDK
Introduction to the OpenAI SDK Setting Up Python Creating an API Key Your First Call — client.responses.create() and response.output_text Understanding Billing, Credits, and What a Request Costs Why Responses Replaced Chat Completions Anatomy of a Request: model, input, and instructions Anatomy of a Response: The Typed output Array, Not Just Text Roles: User, Assistant, and Developer/System Choosing a Model, and Reading the Models Page Instead of Memorizing Names Instructions vs. Input Writing Prompts That Get Consistent Results Few-Shot Examples Reasoning Models and the reasoning Parameter Debugging a Prompt That Misbehaves Why Streaming Matters for User Experience stream=True and Iterating Over Events Handling the Event Types You Actually Care About Background Mode for Long-Running Jobs Project — Add Live Streaming to Your Chatbot The Problem With Parsing Free Text JSON Schema and Strict Mode Pydantic Models With the SDK's Parse Helpers Handling Refusals and Validation Failures Project — A Resume-to-JSON Extractor Working With input_image input_file, PDFs, and the Files API Image Generation Speech-to-Text and Text-to-Speech Project: A PDF Question-Answering Script What Function Calling Is Defining a Tool Schema The Full Loop Multiple Tools Errors, Timeouts, and Untrusted Arguments Project: A Weather Assistant Web Search File Search and Vector Stores Code Interpreter Remote MCP Servers and Connectors Project: A Research Assistant What an Embedding Is, Without the Maths Generating and Storing Embeddings Similarity Search From Scratch Hosted Vector Stores vs. Rolling Your Own A Small RAG App Over a Folder of Notes Agents vs. a Single API Call — When You Need One pip install openai Giving Agents Tools Handoffs and Multi-Agent Triage Guardrails and Approvals Tracing and Observing What Your Agent Did A Multi-Agent Support Desk Error Codes and What Each One Means Retries, Timeouts, and Backoff Rate Limits and Spend Limits Prompt Caching and Cost Optimisation The Batch API for Bulk Work Async Clients and Concurrency Moderation and Safety Best Practices Designing the App Backend With FastAPI Streaming to a Simple Frontend Deploying and a Cost/Safety Checklist Why Web Search Is Useful for Current Information Using the Web Search Tool with the Responses API Configuring Search Behavior for Application Use Cases Understanding Citations and Source Attribution Where to Go Next Building a Research Assistant with Web Search Combining Web Search with Structured Outputs Handling Conflicting or Low-Quality Web Sources Reducing Unsupported Claims with Grounded Generation Testing Freshness-Sensitive AI Answers Production Considerations for Web-Grounded Applications Understanding File Search and Retrieval-Augmented Generation Creating and Organizing Vector Stores Uploading Documents for Retrieval Connecting Vector Stores to Responses API Requests Designing Document Metadata and Filtering Strategies Building a PDF Question-Answering Application Improving Retrieval Quality With Better Document Preparation Handling Missing Evidence and Retrieval Failures Combining File Search With Web Search Building a Production Knowledge-Base Assistant What the Code Interpreter Tool Is Designed For Running Python-Based Analysis Through the OpenAI SDK Uploading Datasets for Analysis Analyzing CSV and Spreadsheet Data Generating Charts and Data Summaries Handling Generated Files and Downloadable Artifacts Building a Data-Analysis Assistant Combining Code Execution with Structured Outputs Validating Generated Calculations and Results Security and Sandbox Considerations for Code Execution Understanding Multimodal Input with the OpenAI SDK Sending Images to a Model Image Analysis from URLs and Uploaded Files Extracting Text and Information from Screenshots Building an Image-Question-Answering Application Combining Image Input with Structured Output Analyzing Multiple Images in One Request Handling Image Quality and Input Limitations Designing Multimodal Prompts for Reliable Results Building a Practical Vision-Powered Python Application Understanding Speech-to-Text and Text-to-Speech Workflows Transcribing Audio with the OpenAI SDK Working with Uploaded Audio Files Handling Timestamps and Transcription Metadata Building a Meeting Transcription Workflow Generating Spoken Responses from Text Handling Long Audio and Processing Failures Combining Audio with Text and Tool Calling Building an End-to-End Python Voice Application What Embeddings Are and When to Use Them Generating Embeddings With the OpenAI API Preparing Text for Embedding Comparing Vectors With Cosine Similarity Building a Simple Semantic Search Engine in Python Storing Embeddings in a Database Metadata Filtering for Semantic Search Chunking Strategies for Better Retrieval Evaluating Semantic Search Quality Building a Document Similarity Application When Batch Processing Makes Sense Designing Large-Volume AI Processing Pipelines Using Asynchronous Python with the OpenAI SDK Running Concurrent Requests Safely Controlling Concurrency and Avoiding Rate Limits Tracking Batch Job Progress Handling Partial Failures in Bulk Workloads Retrying Failed Items Without Duplicating Successful Work Designing Resumable AI Processing Jobs Building a Production Batch-Processing Pipeline Batch Processing Makes Sense Large-Scale AI Processing Pipelines Async Python with OpenAI SDK Safe Concurrent Requests Concurrency & Rate Limits Batch Progress Tracking Partial Failure Handling Safe Retry Handling Resumable AI Jobs Production Batch Pipeline System–User Data Separation Reusable App Instructions Prompt Templates & Variables Extraction & Classification Prompts Summarization & Transformation Prompts Explicit Output Requirements Prompt Version Management Prompt Testing & Evaluation Reusable Python Prompt Library API Key Security Secure API Key Storage Secure Secret Management Prompt Injection Prevention Trusted vs. Untrusted Content Tool Argument Validation Sensitive Data Handling Secure Logging AI Action Authorization Production AI Security Checklist Why AI Applications Need Evaluation Beyond Unit Tests Unit Testing OpenAI SDK Integration Code Mocking API Responses in Python Tests Testing Structured Outputs Against Schemas Testing Tool-Calling Workflows Building a Small Evaluation Dataset Measuring Accuracy, Consistency, and Failure Rates Regression Testing Prompts and Model Changes Human Evaluation Versus Automated Evaluation Creating a Repeatable Evaluation Pipeline AI Request Monitoring Token Cost Management Usage Metrics Design Reducing Model Calls Prompt & Context Optimization Model Selection & Optimization AI Caching Strategies Interactive Latency Optimization Usage Dashboards & Budget Alerts Performance & Cost Checklist Every API Call Starts Fresh Fixing API Statelessness Server-Side Conversation Memory Limits of Response Chaining What We're Building Conversation Memory Challenges Preparing an OpenAI SDK Application for Deployment Environment-Specific Configuration for Development and Production Deploying a Python AI Service with Docker Container Health Checks and Startup Configuration Managing Secrets in Cloud Deployments Background Workers for Long-Running AI Tasks Queues and Asynchronous Job Architectures Scaling AI Workloads Horizontally Monitoring Production Incidents and Failures Production Deployment Checklist for OpenAI SDK Applications Reusable OpenAI Service Classes AI Client Dependency Injection Typed AI Responses Python Configuration Management AI Request Decorators Centralized AI Error Handling Clean SDK Abstractions Reusable OpenAI Utilities Internal AI Python Libraries SDK Integration Maintenance Production AI Chatbot Document Q&A System Web Research Assistant Customer Support Agent AI Data Analysis Assistant Image Analysis App Meeting Transcription & Summary Semantic Document Search Multi-Tool AI Agent Production OpenAI SDK App Why "It Looked Fine When I Tested It" Isn't Enough Timing Note Status Note Pre-Decision Status Note Current Availability Note
Ask about this post
AI Ask about this post

Ask questions about Container Health Checks and Startup Configuration and get answers drawn from it.

Signed-in readers only.