pg_timetable is an advanced job scheduler for PostgreSQL, offering many advantages over traditional schedulers such as cron and others. It is completely database driven and provides a couple of advanced concepts.
# ./pg_timetable
Application Options:
-c, --clientname= Unique name for application instance
-v, --verbose Show verbose debug information [$PGTT_VERBOSE]
-h, --host= PG config DB host (default: localhost) [$PGTT_PGHOST]
-p, --port= PG config DB port (default: 5432) [$PGTT_PGPORT]
-d, --dbname= PG config DB dbname (default: timetable) [$PGTT_PGDATABASE]
-u, --user= PG config DB user (default: scheduler) [$PGTT_PGUSER]
-f, --file= SQL script file to execute during startup
--password= PG config DB password (default: somestrong) [$PGTT_PGPASSWORD]
--sslmode=[disable|require] What SSL priority use for connection (default: disable)
--pgurl= PG config DB url [$PGTT_URL]
--init Initialize database schema and exit. Can be used with --upgrade
--upgrade Upgrade database to the latest version
--no-shell-tasks Disable executing of shell tasks [$PGTT_NOSHELLTASKS]
- 1. Main features
- 2. Installation
- 3. Features and advanced functionality
- 4. Database logging and transactions
- 5. Runtime information
- 6. Schema diagram
- 7. Contributing
- 8. Support
- 9. Authors
- Tasks can be arranged in chains
- A chain can consist of SQL and executables
- Parameters can be passed to chains
- Missed tasks (possibly due to downtime) can be retried automatically
- Support for configurable repetitions
- Builtin tasks such as sending emails, etc.
- Fully database driven configuration
- Full support for database driven logging
- Cron-style scheduling
- Optional concurrency protection
pg_timetable is compatible with the latest supported PostgreSQL versions: 11 and 12.
If you want to use pg_timetable with older versions (9.5, 9.6 and 10)...
please, execute this SQL script before running pg_timetable:
CREATE OR REPLACE FUNCTION starts_with(text, text)
RETURNS bool AS
$$
SELECT
CASE WHEN length($2) > length($1) THEN
FALSE
ELSE
left($1, length($2)) = $2
END
$$
LANGUAGE SQL
IMMUTABLE STRICT PARALLEL SAFE
COST 5;
You may find binary package for you platform on the official Releases page. Right now Windows
, Linux
and macOS
packages are available.
When using Docker, simply replace all
podman
occurrences withdocker
.
- Get the Dockerfile:
wget -O pg_timetable.Dockerfile https://raw.githubusercontent.com/cybertec-postgresql/pg_timetable/master/Dockerfile
- Build the Docker image:
podman build -f pg_timetable.Dockerfile -t pg_timetable:latest
- Run the image:
podman run --rm pg_timetable:latest
- To pass additional arguments to pg_timetable, such as where your database is located, simply attach the flags to the
podman run
, like so:
podman run --rm pg_timetable:latest -h 10.0.0.3 -p 54321
- Downlod and install Go on your system.
- Clone pg_timetable using
go get
:
$ env GIT_TERMINAL_PROMPT=1 go get github.com/cybertec-postgresql/pg_timetable/
Username for 'https://github.com': <Github Username>
Password for 'https://[email protected]': <Github Password>
- Run
pg_timetable
:
$ cd ~/go/src/github.com/cybertec-postgresql/pg_timetable/
$ go run main.go --dbname=dbname --name=worker001 --user=scheduler --password=strongpwd
Alternatively, build a binary and run it:
$ go build
$ ./pg_timetable --dbname=dbname --name=worker001 --user=scheduler --password=strongpwd
- (Optional) Run tests in all sub-folders of the project:
$ cd ~/go/src/github.com/cybertec-postgresql/pg_timetable/
$ go get github.com/stretchr/testify/
$ go test ./...
Alternatively, run tests using postgres docker image:
$ RUN_DOCKER=true go test ./...
The scheduling in pg_timetable encompasses three different stages to facilitate the reuse with other parameters or additional schedules.
The first stage, base_task, defines what to do.
The second stage, task_chain, contains a list of base tasks to run sequentially.
The third stage consists of the chain_execution_config and defines if, when, and how often a chain should be executed.
Additionally, to provide the base tasks with parameters and influence their behavior, each entry in a task chain can be accompanied by an execution parameter.
In pg_timetable, the most basic building block is a base task. Currently, there are three different kinds of task:
Base task kind | Task kind type | Example |
---|---|---|
SQL snippet | SQL |
Starting a cleanup, refreshing a materialized view or processing data. |
External program | SHELL |
Anything that can be called from the command line. |
Internal Task | BUILTIN |
A prebuilt functionality included in pg_timetable. These include:
|
A new base task can be created by inserting a new entry into timetable.base_task
.
Excerpt of timetable.base_task
Column | Type | Definition |
---|---|---|
name |
text |
The name of the base task. |
kind |
timetable.task_kind |
The type of the base task. Can be SQL (default), SHELL or BUILTIN . |
script |
text |
Contains either a SQL script or a command string which will be executed. |
The next building block is a chain, which simply represents a list of tasks. An example would be:
- Download files from a server
- Import files
- Run aggregations
- Commit the transaction
- Remove the files from disk
All tasks of the chain in pg_timetable are executed within one transaction. However, please, pay attention there is no opportunity to rollback SHELL
and BUILTIN
tasks.
Excerpt of timetable.task_chain
Column | Type | Definition |
---|---|---|
parent_id |
bigint |
The ID of the previous base task in the chain. Set this to NULL if it is the first base task in the chain. |
task_id |
bigint |
The ID of the base task. |
run_uid |
text |
The role as which the chain should be executed as. |
database_connection |
integer |
The ID of the timetable.database_connection that should be used. |
ignore_error |
boolean |
Specify if the chain should resume after encountering an error (default: true ). |
Once a chain has been created, it has to be scheduled. For this, pg_timetable builds upon the standard cron-string, all the while adding multiple configuration options.
Excerpt of timetable.chain_execution_config
Column | Type | Definition |
---|---|---|
chain_id |
bigint |
The id of the task chain. |
chain_name |
text |
The name of the chain. |
run_at |
timetable.cron |
To achieve the cron equivalent of *, set the value to NULL . |
max_instances |
integer |
The amount of instances that this chain may have running at the same time. |
live |
boolean |
Control if the chain may be executed once it reaches its schedule. |
self_destruct |
boolean |
Self destruct the chain. |
exclusive_execution |
boolean |
Specifies whether the chain should be executed exclusively while all other chains are paused. |
excluded_execution_configs |
integer[] |
TODO |
client_name |
text |
Specifies which client should execute the chain. Set this to NULL to allow any client. |
As mentioned above, base tasks are simple skeletons (e.g. send email, vacuum, etc.). In most cases, they have to be brought to live by passing parameters to the execution.
Excerpt of timetable.chain_execution_paramaters
Column | Type | Definition |
---|---|---|
chain_execution_config |
bigint |
The ID of the chain execution configuration. |
chain_id |
bigint |
The ID of the chain. |
order_id |
integer |
The order of the parameter. |
value |
jsonb |
A string JSON array containing the paramaters. |
A variety of examples can be found in the /samples
directory.
Create a Job with the timetable.job_add
function. With this function you can add a new one step chain with a cron-syntax.
Parameter | Type | Definition | Default |
---|---|---|---|
task_name |
text |
The name of the Task | |
task_function |
text |
The function wich will be executed. | |
task_type |
text |
Type of the function SQL ,SHELL and BUILTIN |
SQL |
run_at |
timetable.cron |
Time schedule in сron syntax. NULL stands for '* * * * *' |
NULL |
max_instances |
integer |
The amount of instances that this chain may have running at the same time. | NULL |
live |
boolean |
Control if the chain may be executed once it reaches its schedule. | FALSE |
self_destruct |
boolean |
Self destruct the chain. | FALSE |
Run "MyJob" at 00:05 in August.
SELECT timetable.job_add('MyJob', 'SELECT public.my_func()' , NULL, 'SQL', '5 0 * 8 *');
Run "MyJob" at minute 23 past every 2nd hour from 0 through 20.
SELECT timetable.job_add('MyJob', 'SELECT public.my_func()' , NULL, 'SQL', '23 0-20/2 * * *');
The entire activity of pg_timetable is logged in database tables (timetable.log
and timetable.execution_log
). Since there is no need to parse files when accessing log data, the representation through an UI can be easily achieved.
Furthermore, this behavior allows a remote host to access the log in a straightforward manner, simplifying large and/or distributed applications.
Note: Logs are written in a separate transaction, in case the chain fails.
In order to examine the activity of pg_timetable, the table timetable.run_status
can be queried. It contains information about active jobs and their current parameters.
If you want to contribute to pg_timetable and help make it better, feel free to open an issue or even consider submitting a pull request.
For professional support, please contact Cybertec.