-
OverviewWith a 2.32 or later Core instance, the postgres configuration This issue appears when the existing database is version 2.31 or earlier, and also when the database is uninitialized (because it is initialized to a 2.30 blank slate and upgraded to 2.32. SymptomsIn the postgres logs you can see:
You will also see similar errors in the Core logs. Note that the Tomcat server will still be started, so the only indication of failure will be 404 HTTP errors and the manifestation in Postgres and Core server logs. Migrated from gotchas/ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
ResolutionTo avoid this issue, the Postgress server must be restarted with the |
Beta Was this translation helpful? Give feedback.
Resolution
To avoid this issue, the Postgress server must be restarted with the
max_locks_per_transaction
increased. For instance, you can runpostgres -c max_locks_per_transaction=100
or set the same in the config file (i.e./etc/postgresql/9.1/main/postgresql.conf
). 100 should be sufficient, though higher limits are possible. Server memory use may increase when this setting is modified.