TigerGraph DB Release Notes
TigerGraph Server 4.2.0 Preview was released on April 3, 2025.
TigerGraph Server 4.2.0 Alpha was released on March 4, 2025.
TigerGraph 4.2’s feature set is an enhancement of what was available in 4.1.2. Therefore, features that were in 4.1.2 are not considered New Features. |
Key New Features
-
Hybrid Vector Search: Scalable storage and similarity search for vector attributes associated with vertices.
-
New
VECTOR
attribute data type with real-time updates -
Fast approximate nearest neighborhood (ANN), with automatic indexing, incremental indexing
-
hybrid graph + vector search in GSQL
-
-
Incremental Backup which efficiently backs up only what has changed since the last backup/restore event.
-
Rolling Upgrades of maintenance versions for HA clusters (Preview).
-
GQL/OpenCypher path pattern syntax, within GSQL syntax
-
Run ad hoc queries directly (non-procedural interpreted queries)
-
Community Edition of TigerGraph Database:
-
Up to 200GB graph data + 100GB vector data, single server only
-
Some enterprise features not included. Community support only
-
See the full comparison of editions.
-
Detailed List of New and Modified Features
System Management Enhancements
-
Incremental Backup which efficiently backs up only what has changed since the last backup/restore event.
-
Rolling Upgrades of maintenance versions for HA clusters (Preview).
-
Restore option
--keepusers
to keep the database users in the current database, not the ones from the backup file. -
Backup to Azure and GCP cloud storage, analogous to existing support for backup to AWS S3.
-
More graceful user-initiated shutdown of RESTPP and GPE services.
-
Backup HA Enhancement: backup can still work even if a node is down or a region is down.
-
Kubernetes Operator update to v1.5.0 with numerous new features
-
CRR replication, Auto cluster monitoring during creation, upgrade pre-check support, rolling upgrades, backoff delay for job retries to improve resilience
-
Security and Access Control Enhancements
-
JWT authentication for all REST endpoints, including GSQL endpoints.
-
New built-in role: globalobserver, used in Savanna, for minimal privileges:
READ_SCHEMA
andREAD_LOADINGJOB
. -
Two new access privileges: READ_LOG and APP_ACCESS_LOG to grant read-only access to log files.
APP_ACCESS_LOG
is specifically designed for access from GraphStudio or Savanna.
Integration Enhancements
-
Writing query output to an S3 object can now be configured at the user session level instead at the system administration level, for better alignment of roles and privileges.
-
Updated Kafka from 2.5.1 to 3.6.2. Updated Zookeeper from 3.6.3 to 3.8.4.
API Enhancements
-
New endpoints to fetch schema information and sample data from Snowflake.
-
Added a REST endpoint to delete user-defined function files.
-
The Interpret Query endpoint
POST /gsql/v1/queries/interpret
can now be used with queries that have a datetype parameter. -
The Edge Upsert endpoint now supports upserting the multiple edges of a discriminated edge in a single API request.
Query Language Enhancements
-
Multiple enhancements to Syntax V3, which combines GSQL + OpenCypher + GQL Pattern Matching:
-
GQL/OpenCypher path pattern syntax, within GSQL syntax
-
Run ad hoc OpenCypher queries and single GSQL SELECT blocks directly (non-procedural interpreted queries)
-
comparison operators
=
and<>
as alternatives to==
and!=
in WHERE conditions. -
OPTIONAL MATCH, COALESCE, and IS [NOT] NULL (OpenCypher)
-
type() and labels() functions (OpenCypher)
-
-
Map and List query parameter types are now supported.
-
LIKE: <string1> LIKE <string pattern> can be used anywhere a condition is allowed, and <string pattern> can include functions.
-
Bitwise Accumulators: official support for comparison and bitwise logic operators.
-
Configuation parameter
GSQL.Github.Enabled
to enable retrieving UDFs from a Github repository. -
Query Profiler to analyze query execution and performance.
Loading Enhancemnts
-
Multi-character separators between data fields in loading jobs.
-
Schema Change options
-force
andwarn
to specify the behavior when loading jobs run during a schema change. -
Introduced
DISABLED
Loading Job status for jobs which have a schema conflict as a result of a Schema Change.
Performance Improvements
-
Query Plan Caching, to speed up the run time of repeated queries.
Fixed issues
Fixed and Improved in 4.2.0
Functionality
-
Fixed issue where the loading job status was incorrectly cleaned up in advance due to an inaccurate loading job counter (TP-4741).
-
Fixed issue where the loader would fail silently, and now it reports an error directly if the loader fails to start (TP-6420).
-
Fixed issue where loading an empty file triggered a failure loop (TP-6530).
-
Added the 'graph' field to CDC messages generated by the TigerGraph CDC service (CORE-4147).
-
Fixed issue with audit error codes being logged when a CDC message fails to deliver to external Kafka (CORE-4249).
-
Fixed critical disk issue caused by the rebuilder getting stuck in a partitioned cluster after dropping vertex or edge attributes (CORE-4303).
-
Fixed issue where CDC EDGE messages with "UNKNOWN" ID were not removed when a query deleted a vertex and edge simultaneously (CORE-4457).
-
Fixed issue where the primary ID was missing when inserting a vertex implicitly from loading an edge in a single-partition cluster and the target vertex used "primary_id_as_attribute=true" (GLE-7562).
-
Fixed issue with running the TigerGraph command
gcollect
on Kubernetes (TP-6353). -
Added support for debug mode when a pod restart fails due to a PostStartHookError (TP-7228).
-
Added namespace as a suffix of the HostName in HostList on Kubernetes (TP-6214).
-
Fixed query compilation errors when iterating over
FOREACH
to retrieve an accum type attribute with the-single
ordistributed
keyword; ensured operations between two differentGroupByAccums
hold the same data types and field names (GLE-8507). -
Fixed issue with double quotes in literal strings during the creation of a loading job (GLE-8630).
-
Fixed the inability to fetch dynamic file output policy during query execution (GLE-4847).
-
Fixed issue where sensitive information was not removed from the browser localStorage, ensuring better security (APPS-1066)
-
Fixed a query installation failure for single-node queries that initialize vertex set variables in conditional branches, such as
if-else
orcase-when
statements (GLE-7369).
Compatibility Issues
Description | Version Introduced |
---|---|
To apply a File Input Policy or File Output Policy change, now both |
v4.2.0 |
The |
v4.2.0 |
In CDC messages, the format of tuple values has changed. |
v4.2.0 |
SelectVertex() may not be used with a relative filepath but previously this was not enforced. It is now enforced. |
v4.2.0 |
The 'graph' field is now included in CDC messages generated by the TigerGraph CDC service. |
v3.11.0, v4.1.1 |
In CDC messages, the format of map values has changed. |
v3.11.0, v4.1.1 |
A full export package now includes access policies and template queries. |
v4.1.0 |
Users could encounter file input/output policy violations when upgrading a TigerGraph version. See Input policy backward compatibility. |
v3.10.0 |
When a PRINT argument is an expression, the output uses the expression as the key (label) for that output value.
To better support Antlr processing, PRINT now removes any spaces from that key. For example, |
v3.9.3+ |
Betweenness Centrality algorithm: |
v3.9.2+ |
For vertices with string-type primary IDs, vertices whose ID is an empty string will now be rejected. |
v3.9.2+ |
The default mode for the Kafka Connector changed from EOF="false" to EOF="true". |
v3.9.2+ |
The default retention time for two monitoring services |
v3.9.2+ |
The filter for |
v3.9.2+ |
Some user-defined functions (UDFs) may no longer be accepted due to increased security screening.
|
v3.9+ |
Deprecations
Description | Deprecated | Removed |
---|---|---|
The |
3.9.2 |
4.2.0 |
Streaming connector for external Kafka (3.6 to 3.9.2 version) |
3.9.3 |
4.2.0 |
The format for tuple structures in CDC messages will change in a future version. The future format is likely to be similar to the new format for maps. |
4.1.1 |
4.2 |