PieCloudDB is a cloud-native OLAP DBMS database. It supports both IaaS and bare metal deployments.
Multi-version Concurrency Control (MVCC)
In PieCloudDB, the concurrency control scheme used by each coordinator instance is Multi-Version Concurrency Control (MVCC). This approach ensures that each transaction reads from a consistent snapshot of the database that remains unaltered by concurrent transactions.
Read Committed Serializable Snapshot Isolation Repeatable Read
PieCloudDB support two isolation levels: Read Committed and Repeatable Read.
Nested Loop Join Hash Join Sort-Merge Join Semi Join
PieCloudDB support multiple join algorithms, including Hash Join, Merge Join and Nested Loop Join. And PieCloudDB also support two logical joins: Semi Join and Anti Join.
Decomposition Storage Model (Columnar)
PieCloudDB's horizontal data block into compressed, immutable files, along with the inclusion of footers containing column offsets, provides an efficient and optimized storage system. It improves data compression, accelerates query processing, and simplifies data management within the database.
In PieCloudDB, query execution is performed within elastic clusters of virtual machines called virtual warehouses. When executing queries, virtual warehouses utilize related file system protocol to read and write data from a distributed file system. The Cloud Service layer in PieCloudDB encompasses a collection of services responsible for managing computation clusters, queries, transactions, and metadata such as database catalogs and access control information.
Virtual Views Materialized Views
PieCloudDB support both materialized views and virtual views.