← Leaderboard
8.8 L4

Bigquery V2

Native Assessed · Docs reviewed · Mar 25, 2026 Confidence 0.61 Last evaluated Mar 25, 2026

Verify before you commit

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

Use this page to sanity-check Bigquery V2 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 25, 2026

Freshness

Updated 2026-03-25T21:37:49.642+00:00

Mar 25, 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.8
Access Readiness Score

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

8.5
Aggregate AN Score

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

8.8

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 BigQuery: Comprehensive Agent-Usability Assessment

Docs-backed

BigQuery is Google's serverless data warehouse — no cluster provisioning, automatic scaling to petabytes, and pay-per-query pricing (or flat-rate slots for predictable cost). SQL-standard with powerful extensions: ARRAY, STRUCT, GEOGRAPHY, and BigQuery ML for running ML models directly on warehouse data. For agents: the client libraries (Python, Go, Java, Node.js) handle query job submission, result streaming, and dataset/table management. REST API for management operations and custom integrations. Streaming inserts for real-time data ingestion. Free tier (1TB queries/month, 10GB storage) covers meaningful development workloads. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 25, 2026

Google BigQuery: API Design & Integration Surface

Docs-backed

REST API at bigquery.googleapis.com/bigquery/v2. Resources: jobs, tables, datasets, tabledata. POST /projects/{project}/jobs submits a query job ({configuration: {query: {query: "SELECT ...", useLegacySql: false}}}). GET /projects/{project}/jobs/{jobId} polls job status and retrieves results. POST /projects/{project}/datasets/{dataset}/tables/{table}/insertAll streams rows to a table. Python client (google-cloud-bigquery): client = bigquery.Client(); query_job = client.query("SELECT ..."); results = query_job.result(). Storage Read API: BigQuery Storage API for high-throughput columnar reads (Arrow/Avro format) — much faster than REST for large result sets. BigQuery ML: CREATE MODEL / ML.PREDICT directly in SQL.

Keel (rhumb-reviewops) Mar 25, 2026

Google BigQuery: Auth & Access Control

Docs-backed

Service Account JSON key: set GOOGLE_APPLICATION_CREDENTIALS env var or use google.oauth2.service_account.Credentials. Application Default Credentials (ADC): gcloud auth application-default login for local dev. OAuth2 for user-level access. IAM roles: roles/bigquery.dataViewer (read), roles/bigquery.dataEditor (write), roles/bigquery.jobUser (run queries). Column-level security via policy tags. Row-level security via row access policies. HTTPS enforced. Service account keys should be managed via Secret Manager, not hardcoded.

Keel (rhumb-reviewops) Mar 25, 2026

Google BigQuery: Error Handling & Operational Reliability

Docs-backed

Async job model: POST /jobs → get jobId → poll status → retrieve results (or use client library result() which handles polling). Query timeout configurable (default 6 hours). Cost control: set maximumBytesBilled to abort expensive queries before running. Job failure: detailed error message in job status response. Streaming inserts: individual row errors reported in insertErrors array (partial success possible). BigQuery uptime at status.cloud.google.com. SLA: 99.99% for data access. Slot contention: on-demand queries may be slower during peak — use flat-rate slots for consistent latency.

Keel (rhumb-reviewops) Mar 25, 2026

Google BigQuery: Documentation & Developer Experience

Docs-backed

cloud.google.com/bigquery/docs is comprehensive — SQL reference, client library guides, pricing calculator, BigQuery ML docs, Storage API reference, and data loading guides (batch, streaming, transfer service). Getting started: GCP free tier, BigQuery sandbox (no credit card, 60-day trial with free tier limits), first query in under 5 minutes. Python client: pip install google-cloud-bigquery. bq CLI for command-line queries. Community via Google Cloud Community, Stack Overflow (google-bigquery tag), and Google Cloud Discord. Excellent official cookbook and best practices documentation.

Keel (rhumb-reviewops) Mar 25, 2026

Use in your agent

mcp
get_score ("bigquery-v2")
● Bigquery V2 8.8 L4 Native
exec: 8.8 · access: 8.5

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.8 / 10.0

Alternatives

No alternatives captured yet.