omni_http

Basic HTTP types

Overview

PIGSTY 3rd Party Extension: omnigres : Basic HTTP types

Information

Metadata

  • Latest Version: 0.1.0
  • 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: omni_http
  • Requires: N/A

RPM / DEB

  • RPM Repo: PIGSTY
  • RPM Name: omnigres_$v
  • RPM Ver : 0.1.0
  • RPM Deps: N/A
  • DEB Repo: PIGSTY
  • DEB Name: postgresql-$v-omnigres
  • DEB Ver : 0.1.0
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 omnigres_17
PIGSTY 20250120
omnigres_16
PIGSTY 20250120
omnigres_15
PIGSTY 20250120
omnigres_14
PIGSTY 20250120
omnigres_13
PIGSTY 20250120
el8 aarch64 omnigres_17
PIGSTY 20250120
omnigres_16
PIGSTY 20250120
omnigres_15
PIGSTY 20250120
omnigres_14
PIGSTY 20250120
omnigres_13
PIGSTY 20250120
el9 x86_64 omnigres_17
PIGSTY 20250120
omnigres_16
PIGSTY 20250120
omnigres_15
PIGSTY 20250120
omnigres_14
PIGSTY 20250120
omnigres_13
PIGSTY 20250120
el9 aarch64 omnigres_17
PIGSTY 20250120
omnigres_16
PIGSTY 20250120
omnigres_15
PIGSTY 20250120
omnigres_14
PIGSTY 20250120
omnigres_13
PIGSTY 20250120
d12 x86_64 postgresql-17-omnigres
PIGSTY 20250120
postgresql-16-omnigres
PIGSTY 20250120
postgresql-15-omnigres
PIGSTY 20250120
postgresql-14-omnigres
PIGSTY 20250120
postgresql-13-omnigres
PIGSTY 20250120
d12 aarch64 postgresql-17-omnigres
PIGSTY 20250120
postgresql-16-omnigres
PIGSTY 20250120
postgresql-15-omnigres
PIGSTY 20250120
postgresql-14-omnigres
PIGSTY 20250120
postgresql-13-omnigres
PIGSTY 20250120
u22 x86_64 postgresql-17-omnigres
PIGSTY 20250120
postgresql-16-omnigres
PIGSTY 20250120
postgresql-15-omnigres
PIGSTY 20250120
postgresql-14-omnigres
PIGSTY 20250120
postgresql-13-omnigres
PIGSTY 20250120
u22 aarch64 postgresql-17-omnigres
PIGSTY 20250120
postgresql-16-omnigres
PIGSTY 20250120
postgresql-15-omnigres
PIGSTY 20250120
postgresql-14-omnigres
PIGSTY 20250120
postgresql-13-omnigres
PIGSTY 20250120
u24 x86_64 postgresql-17-omnigres
PIGSTY 20250120
postgresql-16-omnigres
PIGSTY 20250120
postgresql-15-omnigres
PIGSTY 20250120
postgresql-14-omnigres
PIGSTY 20250120
postgresql-13-omnigres
PIGSTY 20250120
u24 aarch64 postgresql-17-omnigres
PIGSTY 20250120
postgresql-16-omnigres
PIGSTY 20250120
postgresql-15-omnigres
PIGSTY 20250120
postgresql-14-omnigres
PIGSTY 20250120
postgresql-13-omnigres
PIGSTY 20250120

Installation

Install omni_http via the pig CLI tool:


pig ext install omnigres; # Extension Namepig ext install omni_http; # normalized package name

Install omnigres via Pigsty playbook:

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

Install omnigres RPM from YUM repo directly:

dnf install omnigres_17;
dnf install omnigres_16;
dnf install omnigres_15;
dnf install omnigres_14;
dnf install omnigres_13;

Install omnigres DEB from APT repo directly:

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

Enable omni_http extension on PostgreSQL cluster:

CREATE EXTENSION omni_http;




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