Skip to content

HY-UDBMS/UniBench_new

Repository files navigation

UniBench 2.0: A benchmark for multi-model databases

The UniBench project from the UDBMS group at the University of Helsinki aims to develop a benchmark for a holistic evaluation of multi-model database systems (MMDS), which are able to support multiple data models such as documents, graph, and key-value models in a single back-end. UniBench consists of a set of mixed data models that mimics a social commerce application, which covers data models including JSON, XML, key-value, tabular, graph, and RDF. The UniBench workload consists of a set of complex read-only queries and read-write transactions that involve at least two data models.

Please access our Big Data 2020 tutorial, DAPD 2019 journal paper, and TPCTC 2018 paper to find more details:

Zhang, Chao, Jiaheng Lu. "Big Data System Benchmarking: State of the Art, Current Practices, and Open Challenges." In IEEE BIG DATA 2020 TUTORIAL, 2020.

Zhang, Chao, Jiaheng Lu. "Holistic Evaluation in Multi-Model Databases Benchmarking." In Distributed and Parallel Databases, 2019.

Zhang, Chao, Jiaheng Lu, Pengfei Xu, and Yuxing Chen "UniBench: A benchmark for multi-model database management systems." TPCTC. Springer, Cham, 2018.

Query Implementations

Essentially, any MMDB can be implemented in UniBench either with or without data transformation. Since there is no query language standard, one can find all the query definitions in ArangoDB AQL, OrientDB SQL and AgensGraph SQL/Cypher, Spark SQL (partially) as follows:

Query 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
ArangoDB (AQL) 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
OrientDB (SQL) 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
AgensGraph (Cypher/SQL) 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
Spark (SQL) 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15

Running

Please follow the instructions in wiki to run the benchmark.