organizing cron jobs in one function

Поиск
Список
Период
Сортировка
От Louis-David Mitterrand
Тема organizing cron jobs in one function
Дата
Msg-id 20121117161916.GA9492@apartia.fr
обсуждение исходный текст
Ответы Re: organizing cron jobs in one function  (Craig Ringer <craig@2ndQuadrant.com>)
Список pgsql-sql
Hi,

I'm planning to centralize all db maintenance jobs from a single
pl/pgsql function called by cron every 15 minutes (highest frequency
required by a list of jobs). In pseudo code:

CREATE or replace FUNCTION cron_jobs() RETURNS void LANGUAGE plpgsql AS $$
DECLARErec record;
BEGIN
/*    update tbl1 every 15 minutes*/select name, modified from job_last_update where name='tbl1' into rec;if not found
orrec.modified + interval '15 minutes' < now() then    perform tbl1_job();    update job_last_update set modified=now()
wherename='tbl1';end if;
 

/*    update tbl2 every 2 hours */select name, modified from job_last_update where name='tbl2' into rec;if not found or
rec.modified+ interval '2 hours' < now() then    perform tbl2_job();    update job_last_update set modified=now() where
name='tbl2';endif;
 

/*    etc, etc.*/
END;
$$;

The 'job_last_update' table holds the last time a job was completed.

Is this a good way to do it?

Thanks,



В списке pgsql-sql по дате отправления:

Предыдущее
От: Igor Neyman
Дата:
Сообщение: Re: How to compare two tables in PostgreSQL
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: organizing cron jobs in one function