pg_task
pg_task
pg_task : execute any sql command at any specific time at background
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 1080 | pg_task
|
pg_task
|
1.0.0 |
TIME
|
MIT
|
C
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sL---
|
No
|
Yes
|
Yes
|
No
|
no
|
no
|
| Relationships | |
|---|---|
| See Also | timescaledb
pg_cron
pg_later
pg_background
pg_partman
timescaledb_toolkit
timeseries
periods
|
breaks on many systems
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG
|
1.0.0 |
18
17
16
15
14
13
|
pg_task |
- |
| RPM | PGDG
|
2.1.7 |
18
17
16
15
14
13
|
pg_task_$v* |
- |
| DEB | PIGSTY
|
2.1.12 |
18
17
16
15
14
13
|
postgresql-$v-pg-task |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
el8.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
el9.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
el9.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
el10.x86_64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
el10.aarch64
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
PGDG 2.1.7
|
d12.x86_64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
d12.aarch64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
d13.x86_64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
d13.aarch64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
u22.x86_64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
u22.aarch64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
u24.x86_64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
u24.aarch64
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
PIGSTY 2.1.12
|
Source
pig build pkg pg_task; # build spec not readyInstall
Make sure PGDG repo available:
pig repo add pgdg -u # add pgdg repo and update cacheInstall this extension with pig:
pig install pg_task; # install via package name, for the active PG version
pig install pg_task -v 18; # install for PG 18
pig install pg_task -v 17; # install for PG 17
pig install pg_task -v 16; # install for PG 16
pig install pg_task -v 15; # install for PG 15
pig install pg_task -v 14; # install for PG 14
pig install pg_task -v 13; # install for PG 13Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pg_task';This extension does not need CREATE EXTENSION DDL command
Last updated on