LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph.checkpointbaseCheckpointMetadatadelta_updates_since_snapshot
    Attribute●Since v4.0

    delta_updates_since_snapshot

    Per-channel update count since the last _DeltaSnapshot was written.

    Maps channel name → number of supersteps that wrote to this channel since its last snapshot blob. Used by pregel.create_checkpoint to decide when to write the next snapshot (when the count reaches the channel's snapshot_frequency, snapshot fires and the count resets to 0). Absent on threads that don't use delta channels. Version-format independent — works for int, float, and string version schemes.

    Copy
    delta_updates_since_snapshot: dict[str, int]
    View source on GitHub