]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Add tips for big postgresql setup
authorEric Bollengier <eric@eb.homelinux.org>
Mon, 10 Nov 2008 10:23:14 +0000 (10:23 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 10 Nov 2008 10:23:14 +0000 (10:23 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8025 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/make_postgresql_tables.in
bacula/technotes-2.5

index 324300df691a592f608b3216efa64e77ea10c2a0..051a17588ca14220366c24488027879fa6fd0171 100644 (file)
@@ -43,6 +43,11 @@ CREATE TABLE file
 CREATE INDEX file_jobid_idx on file (jobid);
 CREATE INDEX file_fp_idx on file (filenameid, pathid);
 
+--
+-- Add this if you have a good number of job
+-- that run at the same time
+-- ALTER SEQUENCE file_fileid_seq CACHE 1000;
+
 --
 -- Possibly add one or more of the following indexes
 --  if your Verifies are too slow.
index e996a0c41e8d8a4f1410e921e65160ce4c9db45d..e33c92717d97fc0a3f44bae95a5cc3ee3329a3bc 100644 (file)
@@ -10,6 +10,9 @@ filepattern (restore with regex in bsr)
 mixed priorities
 
 General:
+10Nov08
+ebl  Add tips for postgresql to improve performance when having
+     multiple batch insert at the same time.
 09Nov08
 ebl  Remove extra debug for db lock.
 07Nov08