Back to news
data Priority 5/5 4/21/2026, 11:05:09 AM

Google Cloud Announces General Availability of Spanner Graph with Full GQL Support

Google Cloud Announces General Availability of Spanner Graph with Full GQL Support

Google Cloud has announced the general availability of Spanner Graph, a major update that brings native property graph capabilities to Cloud Spanner. This integration allows organizations to manage both relational and graph data within a single, globally distributed database system. By supporting the ISO GQL standard, Spanner Graph enables developers to perform complex relationship analysis, such as fraud detection and knowledge graph management, without the operational overhead of maintaining separate database silos. The technology distinguishes itself by allowing the interoperability of SQL and GQL within the same query. This means developers can fetch relational attributes and traverse graph connections in a unified execution flow. Built on Spanner's scalable architecture, it provides strong consistency and high availability for graph workloads, leveraging existing storage optimizations to ensure low latency even at massive scales. This update also facilitates the development of advanced AI applications by integrating with Vertex AI for combined vector and graph searches. Engineering teams can now simplify their data stack while gaining the ability to model complex dependencies and improve the accuracy of Retrieval-Augmented Generation (RAG) systems through structural context provided by graph schemas.

#spanner#googlecloud#gql#database

Comparison

AspectBefore / AlternativeAfter / This
Data ModelStrictly Relational (Tables/Rows)Multi-model (Relational + Property Graph)
Query LanguageSQL onlyUnified SQL and GQL (ISO Standard)
System ComplexitySeparate RDBMS and Graph DBsSingle unified Spanner instance
AI IntegrationBasic Vector SearchGraph-linked Vector Search with Vertex AI

Action Checklist

  1. Identify relationship-heavy workloads Focus on fraud detection, identity resolution, or recommendation engines
  2. Define Graph Schema in DDL Map existing relational tables to nodes and edges using Spanner DDL
  3. Migrate legacy graph queries to GQL Utilize ISO GQL for standard-compliant graph traversals
  4. Review query performance with SQL/GQL hybrid Use execution plans to optimize cross-model queries

Source: Google Cloud Blog

This page summarizes the original source. Check the source for full details.

Related