Skip to content

Commit

Permalink
feedback on DB-2403
Browse files Browse the repository at this point in the history
  • Loading branch information
ccestes committed Sep 19, 2023
1 parent 4efd25d commit dadefc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To use `DBMS_JOB`,
1. Set the GUC parameter and the shared libraries parameter in `postgresql.conf` file:

```ini
edb_job_scheduler.database_list = 'edb,regression,ds_db'
edb_job_scheduler.database_list = 'edb'
shared_preload_libraries='$libdir/edb_job_scheduler'
```

Expand Down Expand Up @@ -99,6 +99,8 @@ To configure the job scheduler, use these GUCs:
- `edb_job_scheduler.max_jobs_per_database` — Controls the maximum number of jobs per database level.
- `edb_job_scheduler.max_workers_per_database` — Controls the maximum number of worker processes per database level.

Reload the configuration with `pg_reload_conf()` or `pg_clt reload` to apply your changes.

The extension offers these user API functions:

- `sys.reload_all_jobs` — Reloads all the unscheduled jobs from the current database.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To use `DBMS_SCHEDULER`,
1. Set the GUC parameter and the shared libraries parameter in `postgresql.conf` file:

```ini
edb_job_scheduler.database_list = 'edb,regression,ds_db'
edb_job_scheduler.database_list = 'edb'
shared_preload_libraries='$libdir/edb_job_scheduler'
```

Expand Down Expand Up @@ -93,6 +93,8 @@ To configure the job scheduler, use these GUCs:
- `edb_job_scheduler.max_jobs_per_database` — Controls the maximum number of jobs per database level.
- `edb_job_scheduler.max_workers_per_database` — Controls the maximum number of worker processes per database level.

Reload the configuration with `pg_reload_conf()` or `pg_clt reload` to apply your changes.

The extension offers these user API functions:

- `sys.reload_all_jobs` — Reloads all the unscheduled jobs from the current database.
Expand Down

0 comments on commit dadefc7

Please sign in to comment.