Job scheduling in Postgre

Started by IPSover 17 years ago10 messagesgeneral
Jump to latest
#1IPS
sethi@nic.in

I have certain jobs&nbsp;&nbsp;to be executed automatically at a given interval of time in the postgre SQL database. Is their any utility/feature available in Postgre to do so.<BR><BR>with regards, <BR><BR>I.P.S. Sethi <BR>

In reply to: IPS (#1)
Re: Job scheduling in Postgre

On 02/12/2008 11:45, IPS wrote:

I have certain jobs to be executed automatically at a given interval of
time in the postgre SQL database. Is their any utility/feature available
in Postgre to do so.

cron?

Ray.

------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod@iol.ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------

#3A. Kretschmer
andreas.kretschmer@schollglas.com
In reply to: IPS (#1)
Re: Job scheduling in Postgre

am Tue, dem 02.12.2008, um 16:45:16 +0500 mailte IPS folgendes:

I have certain jobs to be executed automatically at a given interval of time
in the postgre SQL database. Is their any utility/feature available in Postgre
to do so.

No, use the scheduler from the OS, CRON for example (UNIX).

Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

#4Robert Treat
xzilla@users.sourceforge.net
In reply to: A. Kretschmer (#3)
Re: Job scheduling in Postgre

On Tuesday 02 December 2008 07:11:02 A. Kretschmer wrote:

am Tue, dem 02.12.2008, um 16:45:16 +0500 mailte IPS folgendes:

I have certain jobs to be executed automatically at a given interval of
time in the postgre SQL database. Is their any utility/feature available
in Postgre to do so.

No, use the scheduler from the OS, CRON for example (UNIX).

There is a database level schedular called (iirc) pgAgent, which comes bundled
with pgAdmin. I think it's so well hidden because it comes as a part of a
tool which is only used by a small subset of the community. I had hopes that
it might follow autovacuums path and get moved into a contrib module and
possibly integrated into the backend some day, but I haven't seen much push
in that direction.

--
Robert Treat
Conjecture: http://www.xzilla.net
Consulting: http://www.omniti.com

#5Dave Page
dpage@pgadmin.org
In reply to: Robert Treat (#4)
Re: Job scheduling in Postgre

On Thu, Dec 4, 2008 at 3:50 PM, Robert Treat
<xzilla@users.sourceforge.net> wrote:

On Tuesday 02 December 2008 07:11:02 A. Kretschmer wrote:

am Tue, dem 02.12.2008, um 16:45:16 +0500 mailte IPS folgendes:

I have certain jobs to be executed automatically at a given interval of
time in the postgre SQL database. Is their any utility/feature available
in Postgre to do so.

No, use the scheduler from the OS, CRON for example (UNIX).

There is a database level schedular called (iirc) pgAgent, which comes bundled
with pgAdmin. I think it's so well hidden because it comes as a part of a
tool which is only used by a small subset of the community. I had hopes that
it might follow autovacuums path and get moved into a contrib module and
possibly integrated into the backend some day, but I haven't seen much push
in that direction.

It would need to be ported to C first (it's currently wxWidgets/C++).
We are packaging it separately now though.

http://www.pgadmin.org/docs/1.8/pgagent.html
http://www.pgadmin.org/download/pgagent.php

--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com

#6A. Kretschmer
andreas.kretschmer@schollglas.com
In reply to: Robert Treat (#4)
Re: Job scheduling in Postgre

am Thu, dem 04.12.2008, um 10:50:38 -0500 mailte Robert Treat folgendes:

On Tuesday 02 December 2008 07:11:02 A. Kretschmer wrote:

am Tue, dem 02.12.2008, um 16:45:16 +0500 mailte IPS folgendes:

I have certain jobs to be executed automatically at a given interval of
time in the postgre SQL database. Is their any utility/feature available
in Postgre to do so.

No, use the scheduler from the OS, CRON for example (UNIX).

There is a database level schedular called (iirc) pgAgent, which comes bundled
with pgAdmin. I think it's so well hidden because it comes as a part of a

How does it work? Independent from the OS? On the server, within
PostgreSQL?

Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

#7Dave Page
dpage@pgadmin.org
In reply to: A. Kretschmer (#6)
Re: Job scheduling in Postgre

On Thu, Dec 4, 2008 at 4:21 PM, A. Kretschmer
<andreas.kretschmer@schollglas.com> wrote:

am Thu, dem 04.12.2008, um 10:50:38 -0500 mailte Robert Treat folgendes:

On Tuesday 02 December 2008 07:11:02 A. Kretschmer wrote:

am Tue, dem 02.12.2008, um 16:45:16 +0500 mailte IPS folgendes:

I have certain jobs to be executed automatically at a given interval of
time in the postgre SQL database. Is their any utility/feature available
in Postgre to do so.

No, use the scheduler from the OS, CRON for example (UNIX).

There is a database level schedular called (iirc) pgAgent, which comes bundled
with pgAdmin. I think it's so well hidden because it comes as a part of a

How does it work? Independent from the OS? On the server, within
PostgreSQL?

It runs as a service on Windows or daemon on *nix, and connects to a
pgagent schema in a database which may or may not be on the same
machine.

You can define jobs using pgAdmin (the definitions of which are stored
in the database) which consist of one or more SQL or batch/shell
steps. A job can be targetted at a particular server, so you can
ensure batch steps run on a Windows box, and shell on a unix, or can
be run by the first (or only) pgAgent instance that picks it up. SQL
steps currently target a specific database, and in future releases
will be able to target databases on alternate servers - a feature
required for use with hot standby servers.

Each job can have one or more schedules attached to it. Schedules are
defined in a vaguely cron-like way, and include date/time based
exception rules (so you can do things like 'run every day except for
the 25/12/2008'.

See http://www.pgadmin.org/docs/1.8/pgagent.html for more info, and screenshots.

--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com

#8A. Kretschmer
andreas.kretschmer@schollglas.com
In reply to: Dave Page (#7)
Re: Job scheduling in Postgre

am Thu, dem 04.12.2008, um 16:40:38 +0000 mailte Dave Page folgendes:

There is a database level schedular called (iirc) pgAgent, which comes bundled
with pgAdmin. I think it's so well hidden because it comes as a part of a

How does it work? Independent from the OS? On the server, within
PostgreSQL?

It runs as a service on Windows or daemon on *nix, and connects to a
pgagent schema in a database which may or may not be on the same
machine.

You can define jobs using pgAdmin (the definitions of which are stored
in the database) which consist of one or more SQL or batch/shell
steps. A job can be targetted at a particular server, so you can
ensure batch steps run on a Windows box, and shell on a unix, or can
be run by the first (or only) pgAgent instance that picks it up. SQL
steps currently target a specific database, and in future releases
will be able to target databases on alternate servers - a feature
required for use with hot standby servers.

Thx for the explanation.

Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

#9Jason Long
mailing.list@supernovasoftware.com
In reply to: Robert Treat (#4)
Re: Job scheduling in Postgre

Robert Treat wrote:

On Tuesday 02 December 2008 07:11:02 A. Kretschmer wrote:

am Tue, dem 02.12.2008, um 16:45:16 +0500 mailte IPS folgendes:

I have certain jobs to be executed automatically at a given interval of
time in the postgre SQL database. Is their any utility/feature available
in Postgre to do so.

No, use the scheduler from the OS, CRON for example (UNIX).

There is a database level schedular called (iirc) pgAgent, which comes bundled
with pgAdmin. I think it's so well hidden because it comes as a part of a
tool which is only used by a small subset of the community. I had hopes that
it might follow autovacuums path and get moved into a contrib module and
possibly integrated into the backend some day, but I haven't seen much push
in that direction.

What is everyone using instead of pgAdmin?
In production I only use ssh and psql, but in development I do use pgAdmin.

#10Scott Marlowe
scott.marlowe@gmail.com
In reply to: Jason Long (#9)
Re: Job scheduling in Postgre

On Thu, Dec 4, 2008 at 3:54 PM, Jason Long
<mailing.list@supernovasoftware.com> wrote:

What is everyone using instead of pgAdmin?
In production I only use ssh and psql, but in development I do use pgAdmin.

I do it all with cron and psql / pg_backup / bash