citus

Distributed PostgreSQL as an extension

Overview

PIGSTY 3rd Party Extension: citus : Distributed PostgreSQL as an extension

Information

Metadata

  • Latest Version: 13.0.1
  • Postgres Support: 17,16,15,14
  • Need Load: Explicit Loading Required
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can be installed into other schemas
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: pg_catalog
  • Requires: N/A

RPM / DEB

  • RPM Repo: PIGSTY
  • RPM Name: citus_$v*
  • RPM Ver : 13.0-1
  • RPM Deps: N/A
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-citus
  • DEB Ver : 13.0-1
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 citus_17
PIGSTY 13.0.1
citus_16
PIGSTY 13.0.1
citus_15
PIGSTY 13.0.1
citus_14
PIGSTY 13.0.0
citus_13
PGDG 9.5.4
el8 aarch64 citus_17
PIGSTY 13.0.1
citus_16
PIGSTY 13.0.1
citus_15
PIGSTY 13.0.1
citus_14
PIGSTY 13.0.0
citus_13
PGDG 11.3.0
el9 x86_64 citus_17
PIGSTY 13.0.1
citus_16
PIGSTY 13.0.1
citus_15
PIGSTY 13.0.1
citus_14
PIGSTY 13.0.0
citus_13
PGDG 11.3.0
el9 aarch64 citus_17
PIGSTY 13.0.1
citus_16
PIGSTY 13.0.1
citus_15
PIGSTY 13.0.1
citus_14
PIGSTY 13.0.0
citus_13
PGDG 11.3.0
d12 x86_64 postgresql-17-citus
PIGSTY 13.0.1
postgresql-16-citus
PIGSTY 13.0.1
postgresql-15-citus
PIGSTY 13.0.1
postgresql-14-citus
PIGSTY 13.0.0
d12 aarch64 postgresql-17-citus
PIGSTY 13.0.1
postgresql-16-citus
PIGSTY 13.0.1
postgresql-15-citus
PIGSTY 13.0.1
postgresql-14-citus
PIGSTY 13.0.0
u22 x86_64 postgresql-17-citus
PIGSTY 13.0.1
postgresql-16-citus
PIGSTY 13.0.1
postgresql-15-citus
PIGSTY 13.0.1
postgresql-14-citus
PIGSTY 13.0.0
u22 aarch64 postgresql-17-citus
PIGSTY 13.0.1
postgresql-16-citus
PIGSTY 13.0.1
postgresql-15-citus
PIGSTY 13.0.1
postgresql-14-citus
PIGSTY 13.0.0
u24 x86_64 postgresql-17-citus
PIGSTY 13.0.1
postgresql-16-citus
PIGSTY 13.0.1
postgresql-15-citus
PIGSTY 13.0.1
postgresql-14-citus
PIGSTY 13.0.0
u24 aarch64 postgresql-17-citus
PIGSTY 13.0.1
postgresql-16-citus
PIGSTY 13.0.1
postgresql-15-citus
PIGSTY 13.0.1
postgresql-14-citus
PIGSTY 13.0.0

Installation

Install citus via the pig CLI tool:

pig ext install citus

Install citus via Pigsty playbook:

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

Install citus RPM from YUM repo directly:

dnf install citus_17*;
dnf install citus_16*;
dnf install citus_15*;
dnf install citus_14*;

Install citus DEB from APT repo directly:

apt install postgresql-17-citus;
apt install postgresql-16-citus;
apt install postgresql-15-citus;
apt install postgresql-14-citus;

Extension citus has to be added to shared_preload_libraries

shared_preload_libraries = 'citus'; # add to pg cluster config

Enable citus extension on PostgreSQL cluster:

CREATE EXTENSION citus;




Last modified 2025-02-17: add extension part (cfa504b)