On 2012-11-17, Louis-David Mitterrand <[email protected]> wrote: > 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:
centralising execution of cron jobs into a single function is a recipe for locking problems, if your jobs are not of the type that acquire exclusive locks on tables, it might work for you. . -- ⚂⚃ 100% natural -- Sent via pgsql-sql mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-sql
