pg_cron is a PostgreSQL extension that allows you to run jobs based on cron schedules. It operates as a background worker, managing jobs via the `cron.job` table, and executes commands by establishing new database connections or spawning workers. This extension is ideal for automating database maintenance, data processing, or report generation.
Schedule and run recurring tasks directly within your PostgreSQL database.
Database administrators and developers who need to automate tasks within PostgreSQL.