Skip to content

Commit

Permalink
Doc update referencing log table data dump
Browse files Browse the repository at this point in the history
  • Loading branch information
keithf4 committed Jul 6, 2012
1 parent 4fc67a9 commit 31115f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/pg_jobmon.md
Expand Up @@ -56,8 +56,8 @@ All show functions also automatically uppercase the job name parameter to be con

**Log Tables:**

**IMPORTANT NOTE**
The job_log and job_detail table data WILL NOT be exported by a pg_dump. The extension system still has some issues to be worked out, one of them being that if you do a full database dump specifying --schema-only, any extension table that has be set to be dumped will be (see catalog.pg_extension_config_dump() function). As you can imagine, over time these two tables can get quite large and that could cause a schema dump of the database to be needlessly large. Until that is fixed, these tables have had their dump setting specifically left off. If you need to dump these tables' data, please DROP the table from the extension, do your dump, then ADD the table back (http://www.postgresql.org/docs/9.1/static/sql-alterextension.html). The other tables have minimal, and more critical data, so their data has been set to be dumped.
**IMPORTANT NOTE**
The job_log and job_detail table data WILL NOT be exported by a pg_dump. The extension system still has some issues to be worked out, one of them being that if you do a full database dump specifying --schema-only, any extension table data that has be set to be dumped will be (see catalog.pg_extension_config_dump() function). As you can imagine, over time these two tables can get quite large and that could cause a schema dump of the database to be needlessly large. Until that is fixed, these tables have had their dump setting specifically left off. If you need to dump these tables' data, please DROP the table from the extension, do your dump, then ADD the table back (http://www.postgresql.org/docs/9.1/static/sql-alterextension.html). The other tables have minimal, and more critical data, so their data has been set to be dumped.

*job_log*
Logs the overall job details associated with a job_id. Recommended to make partitioned on start_time if you see high logging traffic or don't
Expand Down

0 comments on commit 31115f5

Please sign in to comment.