DBCRDSOct 25, 2019

Overlay Indexes: Efficiently Supporting Aggregate Range Queries and Authenticated Data Structures in Off-the-Shelf Databases

arXiv:1910.11754v15 citations
Originality Incremental advance
AI Analysis

This addresses performance bottlenecks for database users needing efficient aggregate queries and authenticated data, though it is an incremental improvement by adding overlay capabilities to existing systems.

The paper tackles the inefficiency of aggregate range queries and lack of support for authenticated data structures in commercial databases by introducing overlay indexes, specifically DB-trees, which reduce query operations to a logarithmic amount of data and enable parallel execution in one or two rounds, showing effectiveness especially with limited data updates.

Commercial off-the-shelf DataBase Management Systems (DBMSes) are highly optimized to process a wide range of queries by means of carefully designed indexing and query planning. However, many aggregate range queries are usually performed by DBMSes using sequential scans, and certain needs, like storing Authenticated Data Structures (ADS), are not supported at all. Theoretically, these needs could be efficiently fulfilled adopting specific kinds of indexing, which however are normally ruled-out in DBMSes design. We introduce the concept of overlay index: an index that is meant to be stored in a standard database, alongside regular data and managed by regular software, to complement DBMS capabilities. We show a data structure, that we call DB-tree, that realizes an overlay index to support a wide range of custom aggregate range queries as well as ADSes, efficiently. All DB-trees operations can be performed by executing a small number of queries to the DBMS, that can be issued in parallel in one or two query rounds, and involves a logarithmic amount of data. We experimentally evaluate the efficiency of DB-trees showing that our approach is effective, especially if data updates are limited.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes