1. High Availability (The “What if” factor)
StateBase uses a distributed architecture across multiple GCP regions.- Redis Layer: Sub-10ms state retrieval.
- Postgres Layer: Guaranteed durability for long-term history.
- Failover: If our main API is unreachable, our SDKs are designed with Graceful Degradation.
2. Graceful Degradation
If the StateBase API times out, the SDK will:- Log a warning to your console.
- Return an empty context/memory object.
- Allow the LLM call to proceed (Stateless mode). Result: Your agent keeps talking, but momentarily loses its “memory” until the connection is restored.