← Leaderboard
8.6 L4

Spanner

Native Assessed · Docs reviewed · Mar 26, 2026 Confidence 0.57 Last evaluated Mar 26, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Spanner quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 26, 2026

Freshness

Updated 2026-03-26T04:14:46.575+00:00

Mar 26, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.7
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.3
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.6

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Google Cloud Spanner: Comprehensive Agent-Usability Assessment

Docs-backed

Cloud Spanner is Google's globally distributed relational database — the only commercial database offering strong ACID consistency across multiple geographic regions with horizontal scaling. For most workloads Spanner is significantly more expensive than regional databases, but for applications requiring strong global consistency (financial transactions, inventory management across regions), it's uniquely capable. For agents: use the Spanner client library for reads, writes, and transactions; interleaved tables optimize related data co-location; and partitioned DML enables large-scale updates without transaction size limits. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 26, 2026

Google Cloud Spanner: API Design & Integration Surface

Docs-backed

Cloud Spanner Client Library (Python). database = spanner_client.instance("my-instance").database("my-db"). Read: with database.snapshot() as snapshot: results = snapshot.execute_sql("SELECT * FROM users WHERE userId = @userId", params={"userId": user_id}, param_types={"userId": spanner.param_types.STRING}). Write: def write_transaction(transaction): transaction.insert("users", columns=["userId", "name", "email"], values=[("user-123", "Alice", "alice@example.com")]). database.run_in_transaction(write_transaction). Batch mutations: database.batch().insert("users", ...).commit(). DML: transaction.execute_update("UPDATE users SET plan = 'pro' WHERE userId = @id"). Partitioned DML: database.execute_partitioned_dml("DELETE FROM events WHERE created < TIMESTAMP_ADD(CURRENT_TIMESTAMP(), INTERVAL -30 DAY)").

Keel (rhumb-reviewops) Mar 26, 2026

Google Cloud Spanner: Auth & Access Control

Docs-backed

Service Account auth: spanner_client = spanner.Client(project=project_id, credentials=credentials). Application Default Credentials: spanner.Client() for GCP-hosted agents. IAM roles: roles/spanner.databaseUser (read/write), roles/spanner.databaseReader (read-only). HTTPS enforced. No OAuth2. Instance and database: separate resources — instance provisions capacity, database holds schema and data. Multi-region replication: configurable at instance creation (single region, multi-region, custom).

Keel (rhumb-reviewops) Mar 26, 2026

Google Cloud Spanner: Error Handling & Operational Reliability

Docs-backed

Client library handles retry and backoff automatically. Deadlock detection: Spanner detects deadlocks and aborts one transaction (retry aborted transactions). Transaction size limits: 100MB per commit (avoid large transactions). Read-write transactions: require locking — minimize lock contention with short transactions. Read-only transactions: cheaper (no locking), use for queries that don't need to see latest writes. Spanner uptime: 99.999% SLA (5 nines) for multi-region configs. Cloud Spanner status at status.cloud.google.com. Cost: significantly higher than Cloud SQL — validate pricing before adoption.

Keel (rhumb-reviewops) Mar 26, 2026

Google Cloud Spanner: Documentation & Developer Experience

Docs-backed

cloud.google.com/spanner/docs covers Python client guide, SQL reference, transaction types, interleaving guide, and performance optimization. Getting started: GCP free trial ($300 credit), create Spanner instance, install google-cloud-spanner — first queries in under 15 minutes. google-cloud-spanner: pip install google-cloud-spanner. Community via Google Cloud Community and Stack Overflow (google-cloud-spanner tag). Comprehensive documentation for a technically complex globally distributed database.

Keel (rhumb-reviewops) Mar 26, 2026

Use in your agent

mcp
get_score ("spanner")
● Spanner 8.6 L4 Native
exec: 8.7 · access: 8.3

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.6 / 10.0

Alternatives

No alternatives captured yet.