DB-EnginesextremeDB - solve IoT connectivity disruptionsEnglish
Deutsch
Knowledge Base of Relational and NoSQL Database Management Systemsprovided by Redgate Software

DBMS > Dolt vs. Google Cloud Datastore vs. PostgreSQL vs. Tarantool vs. XTDB

System Properties Comparison Dolt vs. Google Cloud Datastore vs. PostgreSQL vs. Tarantool vs. XTDB

Editorial information provided by DB-Engines
NameDolt  Xexclude from comparisonGoogle Cloud Datastore  Xexclude from comparisonPostgreSQL  Xexclude from comparisonTarantool  Xexclude from comparisonXTDB infoformerly named Crux  Xexclude from comparison
DescriptionA MySQL compatible DBMS with Git-like versioning of data and schemaAutomatically scaling NoSQL Database as a Service (DBaaS) on the Google Cloud PlatformWidely used open source RDBMS infoDeveloped as objectoriented DBMS (Postgres), gradually enhanced with 'standards' like SQLIn-memory computing platform with a flexible data schema for efficiently building high-performance applicationsA general purpose database with bitemporal SQL and Datalog and graph queries
Primary database modelRelational DBMSDocument storeRelational DBMS infowith object oriented extensions, e.g.: user defined types/functions and inheritance. Handling of key/value pairs with hstore module.Document store
Key-value store
Relational DBMS
Document store
Secondary database modelsDocument storeDocument store
Graph DBMS infowith Apache Age
Spatial DBMS
Vector DBMS infowith pgvector extension
Spatial DBMS infowith Tarantool/GIS extension
DB-Engines Ranking infomeasures the popularity of database management systemsranking trend
Trend Chart
Score0.60
Rank#232  Overall
#106  Relational DBMS
Score3.62
Rank#71  Overall
#12  Document stores
Score674.32
Rank#4  Overall
#4  Relational DBMS
Score1.42
Rank#148  Overall
#26  Document stores
#24  Key-value stores
#66  Relational DBMS
Score0.20
Rank#314  Overall
#46  Document stores
Websitegithub.com/­dolthub/­dolt
www.dolthub.com
cloud.google.com/­datastorewww.postgresql.orgwww.tarantool.iogithub.com/­xtdb/­xtdb
www.xtdb.com
Technical documentationdocs.dolthub.comcloud.google.com/­datastore/­docswww.postgresql.org/­docswww.tarantool.io/­en/­docwww.xtdb.com/­docs
DeveloperDoltHub IncGooglePostgreSQL Global Development Group infowww.postgresql.org/­developerVKJuxt Ltd.
Initial release201820081989 info1989: Postgres, 1996: PostgreSQL20082019
Current release16.4, August 20242.10.0, May 20221.19, September 2021
License infoCommercial or Open SourceOpen Source infoApache Version 2.0commercialOpen Source infoBSDOpen Source infoBSD-2, source-available extensions (modules), commercial licenses for Tarantool EnterpriseOpen Source infoMIT License
Cloud-based only infoOnly available as a cloud servicenoyesnonono
DBaaS offerings (sponsored links) infoDatabase as a Service

Providers of DBaaS offerings, please contact us to be listed.
PostgreSQL Flex @ STACKIT offers managed PostgreSQL Instances with adjustable CPU, RAM, storage amount and speed and several extensions available, in enterprise grade to perfectly match all application requirements. All 100% GDPR-compliant.
Implementation languageGoCC and C++Clojure
Server operating systemsLinux
macOS
Windows
hostedFreeBSD
HP-UX
Linux
NetBSD
OpenBSD
OS X
Solaris
Unix
Windows
BSD
Linux
macOS
All OS with a Java 8 (and higher) VM
Linux
Data schemeyesschema-freeyesFlexible data schema: relational definition for tables with ability to store json-like documents in columnsschema-free
Typing infopredefined data types such as float or dateyesyes, details hereyesstring, double, decimal, uuid, integer, blob, boolean, datetimeyes, extensible-data-notation format
XML support infoSome form of processing data in XML format, e.g. support for XML data structures, and/or support for XPath, XQuery or XSLT.nonoyes infospecific XML-type available, but no XML query functionality.nono
Secondary indexesyesyesyesyesyes
SQL infoSupport of SQLyesSQL-like query language (GQL)yes infostandard with numerous extensionsFull-featured ANSI SQL supportlimited SQL, making use of Apache Calcite
APIs and other access methodsCLI Client
HTTP REST
gRPC (using protocol buffers) API
RESTful HTTP/JSON API
ADO.NET
JDBC
native C library
ODBC
streaming API for large objects
Open binary protocolHTTP REST
JDBC
Supported programming languagesAda
C
C#
C++
D
Delphi
Eiffel
Erlang
Haskell
Java
JavaScript (Node.js)
Objective-C
OCaml
Perl
PHP
Python
Ruby
Scheme
Tcl
.Net
Go
Java
JavaScript (Node.js)
PHP
Python
Ruby
.Net
C
C++
Delphi
Java infoJDBC
JavaScript (Node.js)
Perl
PHP
Python
Tcl
C
C#
C++
Erlang
Go
Java
JavaScript
Lua
Perl
PHP
Python
Rust
Clojure
Java
Server-side scripts infoStored proceduresyes infocurrently in alpha releaseusing Google App Engineuser defined functions inforealized in proprietary language PL/pgSQL or with common languages like Perl, Python, Tcl etc.Lua, C and SQL stored proceduresno
TriggersyesCallbacks using the Google Apps Engineyesyes, before/after data modification events, on replication events, client session eventsno
Partitioning methods infoMethods for storing different data on different nodesnoneShardingpartitioning by range, list and (since PostgreSQL 11) by hashSharding, partitioned with virtual buckets by user defined affinity key. Live resharding for scale up and scale down without maintenance downtime.none
Replication methods infoMethods for redundantly storing data on multiple nodesA database can be cloned to multiple locations and be used there in isolation. Data/schema changes can be pushed/pulled explicitly between locations.Multi-source replication using PaxosSource-replica replication infoother methods possible by using 3rd party extensionsAsynchronous replication with multi-master option
Configurable replication topology (full-mesh, chain, star)
Synchronous quorum replication (with Raft)
yes, each node contains all data
MapReduce infoOffers an API for user-defined Map/Reduce methodsnoyes infousing Google Cloud Dataflownono
Consistency concepts infoMethods to ensure consistency in a distributed systemImmediate Consistency or Eventual Consistency depending on type of query and configuration infoStrong Consistency is default for entity lookups and queries within an Entity Group (but can instead be made eventually consistent). Other queries are always eventual consistent.Immediate ConsistencyCasual consistency across sharding partitions
Eventual consistency within replicaset partition infowhen using asyncronous replication
Immediate Consistency within single instance
Sequential consistency including linearizable read within replicaset partition infowhen using Raft
Foreign keys infoReferential integrityyesyes infovia ReferenceProperties or Ancestor pathsyesyesno
Transaction concepts infoSupport to ensure data integrity after non-atomic manipulations of dataACIDACID infoSerializable Isolation within Transactions, Read Committed outside of TransactionsACIDACID, with serializable isolation and linearizable read (within partition); Configurable MVCC (within partition); No cross-shard distributed transactionsACID
Concurrency infoSupport for concurrent manipulation of datayesyesyesyes, cooperative multitaskingyes
Durability infoSupport for making data persistentyesyesyesyes, write ahead loggingyes, flexibel persistency by using storage technologies like Apache Kafka, RocksDB or LMDB
In-memory capabilities infoIs there an option to define some or all structures to be held in-memory only.nonoyes, full featured in-memory storage engine with persistence
User concepts infoAccess controlOnly one user is configurable, and must be specified in the config file at startupAccess rights for users, groups and roles based on Google Cloud Identity and Access Management (IAM)fine grained access rights according to SQL-standardAccess Control Lists
Mutual TLS authentication for Tarantol Enterprise
Password based authentication
Role-based access control (RBAC) and LDAP for Tarantol Enterprise
Users and Roles

More information provided by the system vendor

We invite representatives of system vendors to contact us for updating and extending the system information,
and for displaying vendor-provided information such as key customers, competitive advantages and market metrics.

Related products and services
3rd parties
» more

We invite representatives of vendors of related products to contact us for presenting information about their offerings here.

More resources
DoltGoogle Cloud DatastorePostgreSQLTarantoolXTDB infoformerly named Crux
DB-Engines blog posts

DB-Engines shares Q1 2025 database industry rankings and top climbers: Snowflake and PostgreSQL trending
1 May 2025, DB-Engines

PostgreSQL is the DBMS of the Year 2023
2 January 2024, Matthias Gelbmann, Paul Andlinger

Snowflake is the DBMS of the Year 2022, defending the title from last year
3 January 2023, Matthias Gelbmann, Paul Andlinger

show all

Data processing speed and reliability: in-memory synchronous replication
9 November 2021,  Vladimir Perepelytsya, Tarantool (sponsor) 

show all

Recent citations in the news

An open-source data storage and visualization platform for collaborative qubit control
30 September 2024, Nature

Top 100+ Essential Data Science Tools & Repos: Streamline Your Workflow Today!
17 October 2024, Packt

7 Modern SQL Databases You Must Know in 2024
28 June 2024, KDnuggets

Git-for-Data, Version-Controlled Database Dolt Gets PostgreSQL-Flavor
25 November 2023, infoq.com

Radar Trends to Watch: July 2022
5 July 2022, O'Reilly Media

provided by Google News

Google Cloud Security Blitz Attacks Email Phishing, Improves Visibility
4 May 2025, SDx Central

Observability: cloud monitoring and logging
18 November 2024, Google Cloud

Best Cloud Storage Options for All Your Data in 2025
16 April 2025, CNET

Storage news ticker – April 11
11 April 2025, Blocks and Files

AWS vs Azure vs Google Cloud in 2025: Cloud Comparison
25 April 2025, Cloudwards.net

provided by Google News

Understanding transaction visibility in PostgreSQL clusters with read replicas
2 May 2025, Amazon Web Services (AWS)

Over 1,500 PostgreSQL Servers Compromised in Fileless Cryptocurrency Mining Campaign
1 April 2025, The Hacker News

Fileless XMRig-C3 Cryptominer Targets PostgreSQL Servers
31 March 2025, wiz.io

Rapid7 Flags New PostgreSQL Zero-Day Connected to BeyondTrust Exploitation
13 February 2025, SecurityWeek

Goldengate 23ai for OCI PostgreSQL Database Service
17 April 2025, Oracle Blogs

provided by Google News

Tarantool Announces New Enterprise Version With Enhanced Scaling and Monitoring Capabilities
18 May 2018, Newswire.com

VShard — horizontal scaling in Tarantool
7 March 2019, Habr

provided by Google News



Share this page

Featured Products

Neo4j logo

See for yourself how a graph database can make your life easier.
Use Neo4j online for free.

SingleStore logo

The data platform to build your intelligent applications.
Try it free.

Datastax Astra logo

Bring all your data to Generative AI applications with vector search enabled by the most scalable
vector database available.
Try for Free

Milvus logo

Vector database designed for GenAI, fully equipped for enterprise implementation.
Try Managed Milvus for Free

RaimaDB logo

RaimaDB, embedded database for mission-critical applications. When performance, footprint and reliability matters.
Try RaimaDB for free.

Present your product here