pgq

Generic queue for PostgreSQL

Overview

PGDG 1st Party Extension: pgq : Generic queue for PostgreSQL

Information

Metadata

  • Latest Version: 3.5.1
  • Postgres Support: 17,16,15,14,13
  • 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: N/A

RPM / DEB

  • RPM Repo: PGDG
  • RPM Name: pgq_$v*
  • RPM Ver : 3.5.1
  • RPM Deps: N/A
  • DEB Repo: PGDG
  • DEB Name: postgresql-$v-pgq3
  • DEB Ver : 3.5
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pgq_17
PGDG 3.5.1
pgq_16
PGDG 3.5.1
pgq_15
PGDG 3.5.1
pgq_14
PGDG 3.5.1
pgq_13
PGDG 3.5.1
el8 aarch64 pgq_17
PGDG 3.5.1
pgq_16
PGDG 3.5.1
pgq_15
PGDG 3.5.1
pgq_14
PGDG 3.5.1
pgq_13
PGDG 3.5.1
el9 x86_64 pgq_17
PGDG 3.5.1
pgq_16
PGDG 3.5.1
pgq_15
PGDG 3.5.1
pgq_14
PGDG 3.5.1
pgq_13
PGDG 3.5.1
el9 aarch64 pgq_17
PGDG 3.5.1
pgq_16
PGDG 3.5.1
pgq_15
PGDG 3.5.1
pgq_14
PGDG 3.5.1
pgq_13
PGDG 3.5.1
d12 x86_64 postgresql-17-pgq3
PGDG 3.5
postgresql-16-pgq3
PGDG 3.5
postgresql-15-pgq3
PGDG 3.5
postgresql-14-pgq3
PGDG 3.5
postgresql-13-pgq3
PGDG 3.5
d12 aarch64 postgresql-17-pgq3
PGDG 3.5
postgresql-16-pgq3
PGDG 3.5
postgresql-15-pgq3
PGDG 3.5
postgresql-14-pgq3
PGDG 3.5
postgresql-13-pgq3
PGDG 3.5
u22 x86_64 postgresql-17-pgq3
PGDG 3.5
postgresql-16-pgq3
PGDG 3.5
postgresql-15-pgq3
PGDG 3.5
postgresql-14-pgq3
PGDG 3.5
postgresql-13-pgq3
PGDG 3.5
u22 aarch64 postgresql-17-pgq3
PGDG 3.5
postgresql-16-pgq3
PGDG 3.5
postgresql-15-pgq3
PGDG 3.5
postgresql-14-pgq3
PGDG 3.5
postgresql-13-pgq3
PGDG 3.5
u24 x86_64 postgresql-17-pgq3
PGDG 3.5
postgresql-16-pgq3
PGDG 3.5
postgresql-15-pgq3
PGDG 3.5
postgresql-14-pgq3
PGDG 3.5
postgresql-13-pgq3
PGDG 3.5
u24 aarch64 postgresql-17-pgq3
PGDG 3.5
postgresql-16-pgq3
PGDG 3.5
postgresql-15-pgq3
PGDG 3.5
postgresql-14-pgq3
PGDG 3.5
postgresql-13-pgq3
PGDG 3.5

Installation

Install pgq via the pig CLI tool:

pig ext install pgq

Install pgq via Pigsty playbook:

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

Install pgq RPM from YUM repo directly:

dnf install pgq_17*;
dnf install pgq_16*;
dnf install pgq_15*;
dnf install pgq_14*;
dnf install pgq_13*;

Install pgq DEB from APT repo directly:

apt install postgresql-17-pgq3;
apt install postgresql-16-pgq3;
apt install postgresql-15-pgq3;
apt install postgresql-14-pgq3;
apt install postgresql-13-pgq3;

Enable pgq extension on PostgreSQL cluster:

CREATE EXTENSION pgq;




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