DB-EnginesExtremeDB: mitigate connectivity issues in a DBMSEnglish
Deutsch
Knowledge Base of Relational and NoSQL Database Management Systemsprovided by solid IT

DBMS > H2 vs. HyperSQL vs. Tarantool vs. TimescaleDB vs. VoltDB

System Properties Comparison H2 vs. HyperSQL vs. Tarantool vs. TimescaleDB vs. VoltDB

Editorial information provided by DB-Engines
NameH2  Xexclude from comparisonHyperSQL infoalso known as HSQLDB  Xexclude from comparisonTarantool  Xexclude from comparisonTimescaleDB  Xexclude from comparisonVoltDB  Xexclude from comparison
DescriptionFull-featured RDBMS with a small footprint, either embedded into a Java application or used as a database server.Multithreaded, transactional RDBMS written in Java infoalso known as HSQLDBIn-memory computing platform with a flexible data schema for efficiently building high-performance applicationsA time series DBMS optimized for fast ingest and complex queries, based on PostgreSQLDistributed In-Memory NewSQL RDBMS infoUsed for OLTP applications with a high frequency of relatively simple transactions, that can hold all their data in memory
Primary database modelRelational DBMSRelational DBMSDocument store
Key-value store
Relational DBMS
Time Series DBMSRelational DBMS
Secondary database modelsSpatial DBMSSpatial DBMS infowith Tarantool/GIS extensionRelational DBMS
DB-Engines Ranking infomeasures the popularity of database management systemsranking trend
Trend Chart
Score8.22
Rank#50  Overall
#32  Relational DBMS
Score3.90
Rank#85  Overall
#46  Relational DBMS
Score1.67
Rank#150  Overall
#25  Document stores
#25  Key-value stores
#69  Relational DBMS
Score4.87
Rank#74  Overall
#4  Time Series DBMS
Score1.46
Rank#159  Overall
#74  Relational DBMS
Websitewww.h2database.comhsqldb.orgwww.tarantool.iowww.timescale.comwww.voltdb.com
Technical documentationwww.h2database.com/­html/­main.htmlhsqldb.org/­web/­hsqlDocsFrame.htmlwww.tarantool.io/­en/­docdocs.timescale.comdocs.voltdb.com
DeveloperThomas MuellerVKTimescaleVoltDB Inc.
Initial release20052001200820172010
Current release2.2.220, July 20232.7.2, June 20232.10.0, May 20222.13.0, November 202311.3, April 2022
License infoCommercial or Open SourceOpen Source infodual-licence (Mozilla public license, Eclipse public license)Open Source infobased on BSD licenseOpen Source infoBSD-2, source-available extensions (modules), commercial licenses for Tarantool EnterpriseOpen Source infoApache 2.0Open Source infoAGPL for Community Edition, commercial license for Enterprise, AWS, and Pro Editions
Cloud-based only infoOnly available as a cloud servicenonononono
DBaaS offerings (sponsored links) infoDatabase as a Service

Providers of DBaaS offerings, please contact us to be listed.
Implementation languageJavaJavaC and C++CJava, C++
Server operating systemsAll OS with a Java VMAll OS with a Java VM infoEmbedded (into Java applications) and Client-Server operating modesBSD
Linux
macOS
Linux
OS X
Windows
Linux
OS X infofor development
Data schemeyesyesFlexible data schema: relational definition for tables with ability to store json-like documents in columnsyesyes
Typing infopredefined data types such as float or dateyesyesstring, double, decimal, uuid, integer, blob, boolean, datetimenumerics, strings, booleans, arrays, JSON blobs, geospatial dimensions, currencies, binary data, other complex data typesyes
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.nononoyes
Secondary indexesyesyesyesyesyes
SQL infoSupport of SQLyesyesFull-featured ANSI SQL supportyes infofull PostgreSQL SQL syntaxyes infoonly a subset of SQL 99
APIs and other access methodsJDBC
ODBC
HTTP API infoJDBC via HTTP
JDBC
ODBC
Open binary protocolADO.NET
JDBC
native C library
ODBC
streaming API for large objects
Java API
JDBC
RESTful HTTP/JSON API
Supported programming languagesJavaAll languages supporting JDBC/ODBC
Java
C
C#
C++
Erlang
Go
Java
JavaScript
Lua
Perl
PHP
Python
Rust
.Net
C
C++
Delphi
Java infoJDBC
JavaScript
Perl
PHP
Python
R
Ruby
Scheme
Tcl
C#
C++
Erlang infonot officially supported
Go
Java
JavaScript infoNode.js
PHP
Python
Server-side scripts infoStored proceduresJava Stored Procedures and User-Defined FunctionsJava, SQLLua, C and SQL stored proceduresuser defined functions, PL/pgSQL, PL/Tcl, PL/Perl, PL/Python, PL/Java, PL/PHP, PL/R, PL/Ruby, PL/Scheme, PL/Unix shellJava
Triggersyesyesyes, before/after data modification events, on replication events, client session eventsyesno
Partitioning methods infoMethods for storing different data on different nodesnonenoneSharding, partitioned with virtual buckets by user defined affinity key. Live resharding for scale up and scale down without maintenance downtime.yes, across time and space (hash partitioning) attributesSharding
Replication methods infoMethods for redundantly storing data on multiple nodesWith clustering: 2 database servers on different computers operate on identical copies of a databasenoneAsynchronous replication with multi-master option
Configurable replication topology (full-mesh, chain, star)
Synchronous quorum replication (with Raft)
Source-replica replication with hot standby and reads on replicas infoMulti-source replication
Source-replica replication
MapReduce infoOffers an API for user-defined Map/Reduce methodsnononono
Consistency concepts infoMethods to ensure consistency in a distributed systemImmediate ConsistencyImmediate 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
Immediate Consistency
Foreign keys infoReferential integrityyesyesyesyesno infoFOREIGN KEY constraints are not supported
Transaction concepts infoSupport to ensure data integrity after non-atomic manipulations of dataACIDACIDACID, with serializable isolation and linearizable read (within partition); Configurable MVCC (within partition); No cross-shard distributed transactionsACIDACID infoTransactions are executed single-threaded within stored procedures
Concurrency infoSupport for concurrent manipulation of datayes, multi-version concurrency control (MVCC)yesyes, cooperative multitaskingyesyes infoData access is serialized by the server
Durability infoSupport for making data persistentyesyesyes, write ahead loggingyesyes infoSnapshots and command logging
In-memory capabilities infoIs there an option to define some or all structures to be held in-memory only.yesyesyes, full featured in-memory storage engine with persistenceno
User concepts infoAccess controlfine grained access rights according to SQL-standardfine 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
fine grained access rights according to SQL-standardUsers and roles with access to stored procedures

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

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

More resources
H2HyperSQL infoalso known as HSQLDBTarantoolTimescaleDBVoltDB
DB-Engines blog posts

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

show all

Recent citations in the news

HyperSQL DataBase flaw leaves library vulnerable to RCE
24 October 2022, The Daily Swig

Introduction to JDBC with HSQLDB tutorial
14 November 2022, TheServerSide.com

provided by Google News

TaranHouse: New Big Data Warehouse Announced by Tarantool
4 April 2018, Newswire

In-Memory Showdown: Redis vs. Tarantool
1 September 2021, Хабр

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

Deploying Tarantool Cartridge applications with zero effort (Part 1)
16 December 2019, Хабр

Deploying Tarantool Cartridge applications with zero effort (Part 2)
13 April 2020, Хабр

provided by Google News

TimescaleDB Is a Vector Database Now, Too
25 September 2023, Datanami

Power IoT and time-series workloads with TimescaleDB for Azure Database for PostgreSQL
18 March 2019, Microsoft

Visualizing IoT Data at Scale With Hopara and TimescaleDB
16 May 2023, Embedded Computing Design

Timescale Announces Corporate Rebrand Reflecting Company's Growth
17 May 2023, PR Newswire

Timescale Valuation Rockets to Over $1B with $110M Round, Marking the Explosive Rise of Time-Series Data
22 February 2022, Business Wire

provided by Google News

Unveiling Volt Active Data's game-changing approach to limitless app performance
16 October 2023, YourStory

 VoltDB Launches Active(N) Lossless Cross Data Center Replication
31 August 2021, PR Newswire

VoltDB Turns to Real-Time Analytics with NewSQL Database
30 January 2014, Datanami

VoltDB Adds Geospatial Support, Cross-Site Replication
28 January 2016, The New Stack

VoltDB Aims for Fast Big Data Development -- ADTmag
29 January 2015, ADT Magazine

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.

AllegroGraph logo

Graph Database Leader for AI Knowledge Graph Applications - The Most Secure Graph Database Available.
Free Download

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

Ontotext logo

GraphDB allows you to link diverse data, index it for semantic search and enrich it via text analysis to build big knowledge graphs. Get it free.

Milvus logo

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

Present your product here