pg_mooncake

Columnstore Table in Postgres

Overview

PIGSTY 3rd Party Extension: pg_mooncake : Columnstore Table in Postgres

Information

Metadata

  • Latest Version: 0.1.2
  • Postgres Support: 17,16,15,14
  • Need Load: Shared library do not need explicit loading
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can be installed into other schemas
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: N/A
  • Requires: N/A

RPM / DEB

  • RPM Repo: PIGSTY
  • RPM Name: pg_mooncake_$v*
  • RPM Ver : 0.1.2
  • RPM Deps: N/A
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-pg-mooncake
  • DEB Ver : 0.1.2
  • DEB Deps: N/A

Availability

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pg_mooncake_17
PIGSTY 0.1.2
pg_mooncake_16
PIGSTY 0.1.2
pg_mooncake_15
PIGSTY 0.1.2
pg_mooncake_14
PIGSTY 0.1.2
el8 aarch64 pg_mooncake_17
PIGSTY 0.1.2
pg_mooncake_16
PIGSTY 0.1.2
pg_mooncake_15
PIGSTY 0.1.2
pg_mooncake_14
PIGSTY 0.1.2
el9 x86_64 pg_mooncake_17
PIGSTY 0.1.2
pg_mooncake_16
PIGSTY 0.1.2
pg_mooncake_15
PIGSTY 0.1.2
pg_mooncake_14
PIGSTY 0.1.2
el9 aarch64 pg_mooncake_17
PIGSTY 0.1.2
pg_mooncake_16
PIGSTY 0.1.2
pg_mooncake_15
PIGSTY 0.1.2
pg_mooncake_14
PIGSTY 0.1.2
d12 x86_64 postgresql-17-pg-mooncake
PIGSTY 0.1.2
postgresql-16-pg-mooncake
PIGSTY 0.1.2
postgresql-15-pg-mooncake
PIGSTY 0.1.2
postgresql-14-pg-mooncake
PIGSTY 0.1.2
d12 aarch64 postgresql-17-pg-mooncake
PIGSTY 0.1.2
postgresql-16-pg-mooncake
PIGSTY 0.1.2
postgresql-15-pg-mooncake
PIGSTY 0.1.2
postgresql-14-pg-mooncake
PIGSTY 0.1.2
u22 x86_64 postgresql-17-pg-mooncake
PIGSTY 0.1.2
postgresql-16-pg-mooncake
PIGSTY 0.1.2
postgresql-15-pg-mooncake
PIGSTY 0.1.2
postgresql-14-pg-mooncake
PIGSTY 0.1.2
u22 aarch64 postgresql-17-pg-mooncake
PIGSTY 0.1.2
postgresql-16-pg-mooncake
PIGSTY 0.1.2
postgresql-15-pg-mooncake
PIGSTY 0.1.2
postgresql-14-pg-mooncake
PIGSTY 0.1.2
u24 x86_64 postgresql-17-pg-mooncake
PIGSTY 0.1.2
postgresql-16-pg-mooncake
PIGSTY 0.1.2
postgresql-15-pg-mooncake
PIGSTY 0.1.2
postgresql-14-pg-mooncake
PIGSTY 0.1.2
u24 aarch64 postgresql-17-pg-mooncake
PIGSTY 0.1.2
postgresql-16-pg-mooncake
PIGSTY 0.1.2
postgresql-15-pg-mooncake
PIGSTY 0.1.2
postgresql-14-pg-mooncake
PIGSTY 0.1.2

Installation

Install pg_mooncake via the pig CLI tool:

pig ext install pg_mooncake

Install pg_mooncake via Pigsty playbook:

./pgsql.yml -t pg_extension -e '{"pg_extensions": ["pg_mooncake"]}' # -l <cls>

Install pg_mooncake RPM from YUM repo directly:

dnf install pg_mooncake_17*; dnf install pg_mooncake_16*; dnf install pg_mooncake_15*; dnf install pg_mooncake_14*;

Install pg_mooncake DEB from APT repo directly:

apt install postgresql-17-pg-mooncake; apt install postgresql-16-pg-mooncake; apt install postgresql-15-pg-mooncake; apt install postgresql-14-pg-mooncake;

Create pg_mooncake extension on PostgreSQL cluster:

CREATE EXTENSION pg_mooncake;

Usage

THIS EXTENSION IS CONFLICT WITH pg_duckdb & duckdb_fdw, if it is under maintained, we may remove this extension in the future

Beware that this package is conflict with the official pg_duckdb extension due to use the same libduckdb.so under same path.

And this function will block the duckdb_fdw functioning.

-- Create a columnstore table in PostgreSQL CREATE TABLE user_activity (....) USING columnstore; -- Insert data into a columnstore table INSERT INTO user_activity VALUES ....; -- Query a columnstore table in PostgreSQL SELECT * FROM user_activity LIMIT 5;

Example

Use mooncake with S3:

SELECT mooncake.create_secret('<name>', 'S3', '<key_id>', '<secret>', '{"REGION": "<s3-region>"}'); SET mooncake.default_bucket = 's3://<bucket>'; SET mooncake.enable_local_cache = false; -- (if you are using Neon)

Use mooncake with local columnstore:

CREATE TABLE user_activity( user_id BIGINT, activity_type TEXT, activity_timestamp TIMESTAMP, duration INT ) USING columnstore; INSERT INTO user_activity VALUES (1, 'login', '2024-01-01 08:00:00', 120), (2, 'page_view', '2024-01-01 08:05:00', 30), (3, 'logout', '2024-01-01 08:30:00', 60), (4, 'error', '2024-01-01 08:13:00', 60); SELECT * FROM user_activity;

Run analytic queries

SELECT user_id, activity_type, SUM(duration) AS total_duration, COUNT(*) AS activity_count FROM user_activity GROUP BY user_id, activity_type ORDER BY user_id, activity_type;

The explain result could be:

postgres@u22:5432/postgres=# explain SELECT user_id, activity_type, SUM(duration) AS total_duration, COUNT(*) AS activity_count FROM user_activity GROUP BY user_id, activity_type ORDER BY user_id, activity_type; QUERY PLAN ------------------------------------------------------------ Custom Scan (DuckDBScan) (cost=0.00..0.00 rows=0 width=0) DuckDB Execution Plan: ┌───────────────────────────┐ │ PROJECTION │ │ ──────────────────── │ │__internal_decompress_integ│ │ ral_bigint(#0, 1) │ │ #1 │ │ #2 │ │ #3 │ │ │ │ ~2 Rows │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ ORDER_BY │ │ ──────────────────── │ │ user_activity.user_id ASC │ │ user_activity │ │ .activity_type ASC │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ PROJECTION │ │ ──────────────────── │ │__internal_compress_integra│ │ l_utinyint(#0, 1) │ │ #1 │ │ #2 │ │ #3 │ │ │ │ ~2 Rows │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ PROJECTION │ │ ──────────────────── │ │__internal_decompress_integ│ │ ral_bigint(#0, 1) │ │ #1 │ │ #2 │ │ #3 │ │ │ │ ~2 Rows │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ HASH_GROUP_BY │ │ ──────────────────── │ │ Groups: │ │ #0 │ │ #1 │ │ │ │ Aggregates: │ │ sum(#2) │ │ count_star() │ │ │ │ ~2 Rows │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ PROJECTION │ │ ──────────────────── │ │ user_id │ │ activity_type │ │ duration │ │ │ │ ~4 Rows │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ PROJECTION │ │ ──────────────────── │ │__internal_compress_integra│ │ l_utinyint(#0, 1) │ │ #1 │ │ #2 │ │ │ │ ~4 Rows │ └─────────────┬─────────────┘ ┌─────────────┴─────────────┐ │ COLUMNSTORE_SCAN │ │ ──────────────────── │ │ Function: │ │ COLUMNSTORE_SCAN │ │ │ │ Projections: │ │ user_id │ │ activity_type │ │ duration │ │ │ │ ~4 Rows │ └───────────────────────────┘ (90 rows)




Last modified 2025-03-21: use global url (cc35107)