|
NeoGraph 0.10.0
A C++17 Graph Agent Engine Library — LangGraph for C++
|
Persistent CheckpointStore backed by PostgreSQL via libpq. More...
#include <postgres_checkpoint.h>
Public Member Functions | |
| size_t | blob_count () |
Test helper: count rows in neograph_checkpoint_blobs. | |
| void | clear_writes (const std::string &thread_id, const std::string &parent_checkpoint_id) override |
| Discard pending writes for a parent checkpoint once its successor super-step has been fully committed. | |
| void | delete_thread (const std::string &thread_id) override |
| Delete all checkpoints for a thread. | |
| void | drop_schema () |
Drop all neograph_* tables. | |
| std::vector< PendingWrite > | get_writes (const std::string &thread_id, const std::string &parent_checkpoint_id) override |
| Load all pending writes attached to a parent checkpoint. | |
| std::vector< Checkpoint > | list (const std::string &thread_id, int limit=100) override |
| List checkpoints for a thread, ordered by timestamp (newest first). | |
| std::optional< Checkpoint > | load_by_id (const std::string &id) override |
| Load a checkpoint by its unique ID. | |
| std::optional< Checkpoint > | load_latest (const std::string &thread_id) override |
| Load the most recent checkpoint for a thread. | |
| size_t | pool_size () const |
| Number of connections in the pool. | |
| PostgresCheckpointStore (const std::string &conn_str, size_t pool_size=8) | |
| void | put_writes (const std::string &thread_id, const std::string &parent_checkpoint_id, const PendingWrite &write) override |
| Record a successful node execution within an in-progress super-step. | |
| size_t | reconnect_count () const |
| Number of times a pool slot's connection was replaced after a broken-connection detection. | |
| void | save (const Checkpoint &cp) override |
| Save a checkpoint. | |
Persistent CheckpointStore backed by PostgreSQL via libpq.
Construct with a libpq connection string (e.g. "postgresql://user:pass@host:5432/dbname"). The constructor opens the connection eagerly and runs ensure_schema() so callers get an immediate failure if credentials or DDL permissions are wrong, rather than a delayed surprise on first save().
Definition at line 106 of file postgres_checkpoint.h.
|
explicit |
| conn_str | libpq connection string. Anything libpq accepts. |
| pool_size | Number of connections to open eagerly. Defaults to 8 — a sensible match for typical small server worker pools. Set to 1 for embedded / single-thread use to save one PG backend per store. Must be >= 1. |
| std::runtime_error | on connection or DDL failure. |
| size_t neograph::graph::PostgresCheckpointStore::blob_count | ( | ) |
Test helper: count rows in neograph_checkpoint_blobs.
Lets integration tests verify blob dedup across saves the same way InMemoryCheckpointStore::blob_count() does.
|
overridevirtual |
Discard pending writes for a parent checkpoint once its successor super-step has been fully committed.
Called by the engine after the new super-step checkpoint has been durably saved, so pending writes are never cleared while still being the only record of a node's output.
| thread_id | Thread identifier. |
| parent_checkpoint_id | Checkpoint whose pending writes to clear. |
Reimplemented from neograph::graph::CheckpointStore.
|
overridevirtual |
Delete all checkpoints for a thread.
| thread_id | Thread identifier to delete. |
Reimplemented from neograph::graph::CheckpointStore.
| void neograph::graph::PostgresCheckpointStore::drop_schema | ( | ) |
Drop all neograph_* tables.
Test-only utility — destroys data. Useful in test fixtures that want a clean slate per test case.
|
overridevirtual |
Load all pending writes attached to a parent checkpoint.
Called by the engine on resume to skip already-completed tasks. Default implementation returns an empty vector.
| thread_id | Thread identifier. |
| parent_checkpoint_id | Checkpoint whose pending writes to load. |
Reimplemented from neograph::graph::CheckpointStore.
|
overridevirtual |
List checkpoints for a thread, ordered by timestamp (newest first).
| thread_id | Thread identifier. |
| limit | Maximum number of checkpoints to return (default: 100). |
Reimplemented from neograph::graph::CheckpointStore.
|
overridevirtual |
Load a checkpoint by its unique ID.
| id | Checkpoint UUID. |
Reimplemented from neograph::graph::CheckpointStore.
|
overridevirtual |
Load the most recent checkpoint for a thread.
| thread_id | Thread identifier. |
Reimplemented from neograph::graph::CheckpointStore.
|
inline |
Number of connections in the pool.
Useful for benchmarks and for confirming the pool was sized as expected.
Definition at line 125 of file postgres_checkpoint.h.
|
overridevirtual |
Record a successful node execution within an in-progress super-step.
Called by the engine immediately after a node returns successfully and before its writes are applied to the shared GraphState. The parent_checkpoint_id anchors the pending write to the super-step boundary it was produced under.
Default implementation is a no-op so custom stores keep working; such stores fall back to "full super-step replay" on resume.
| thread_id | Thread identifier. |
| parent_checkpoint_id | Checkpoint marking the start of the in-progress super-step. |
| write | The pending write record to persist. |
Reimplemented from neograph::graph::CheckpointStore.
|
inline |
Number of times a pool slot's connection was replaced after a broken-connection detection.
Cumulative across the whole store; useful for monitoring (e.g. Prometheus gauge) and for tests that want to assert the retry path fired.
Definition at line 121 of file postgres_checkpoint.h.
|
overridevirtual |
Save a checkpoint.
| cp | The checkpoint to persist. |
Reimplemented from neograph::graph::CheckpointStore.