pg_incremental

Incremental Processing by Crunchy Data

Overview

MIXED 3rd Party Extension: pg_incremental : Incremental Processing by Crunchy Data

Information

Metadata

  • Latest Version: 1.1
  • Postgres Support: 17,16
  • 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: pg_catalog
  • Requires: pg_cron

RPM / DEB

  • RPM Repo: PGDG
  • RPM Name: pg_incremental_$v*
  • RPM Ver : 1.0
  • RPM Deps: pg_cron_$v
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-pg-incremental
  • DEB Ver : 1.1
  • DEB Deps: postgresql-$v-cron

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pg_incremental_17
PGDG 1.0.0
pg_incremental_16
PGDG 1.0.0
el8 aarch64 pg_incremental_17
PGDG 1.0.0
pg_incremental_16
PGDG 1.0.0
el9 x86_64 pg_incremental_17
PGDG 1.0.0
pg_incremental_16
PGDG 1.0.0
el9 aarch64 pg_incremental_17
PGDG 1.0.0
pg_incremental_16
PGDG 1.0.0
d12 x86_64 postgresql-17-pg-incremental
PIGSTY 1.1.1
postgresql-16-pg-incremental
PIGSTY 1.1.1
d12 aarch64 postgresql-17-pg-incremental
PIGSTY 1.1.1
postgresql-16-pg-incremental
PIGSTY 1.1.1
u22 x86_64 postgresql-17-pg-incremental
PIGSTY 1.1.1
postgresql-16-pg-incremental
PIGSTY 1.1.1
u22 aarch64 postgresql-17-pg-incremental
PIGSTY 1.1.1
postgresql-16-pg-incremental
PIGSTY 1.1.1
u24 x86_64 postgresql-17-pg-incremental
PIGSTY 1.1.1
postgresql-16-pg-incremental
PIGSTY 1.1.1
u24 aarch64 postgresql-17-pg-incremental
PIGSTY 1.1.1
postgresql-16-pg-incremental
PIGSTY 1.1.1

Installation

Install pg_incremental via the pig CLI tool:

pig ext install pg_incremental

Install pg_incremental via Pigsty playbook:

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

Install pg_incremental RPM from YUM repo directly:

dnf install pg_incremental_17*;
dnf install pg_incremental_16*;

Install pg_incremental DEB from APT repo directly:

apt install postgresql-17-pg-incremental;
apt install postgresql-16-pg-incremental;

Enable pg_incremental extension on PostgreSQL cluster:

CREATE EXTENSION pg_incremental CASCADE;




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