Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
dfdbf689
Commit
dfdbf689
authored
Sep 12, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
max_locks_per_transaction seems to be a more consistent name than
max_locks_per_xact.
parent
dddd95a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+3
-3
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-1
No files found.
doc/src/sgml/runtime.sgml
View file @
dfdbf689
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.7
7 2001/09/09 23:52:12
petere Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.7
8 2001/09/12 14:06:37
petere Exp $
-->
-->
<Chapter Id="runtime">
<Chapter Id="runtime">
...
@@ -1187,11 +1187,11 @@ dynamic_library_path = '/usr/local/lib:/home/my_project/lib:$libdir:$libdir/cont
...
@@ -1187,11 +1187,11 @@ dynamic_library_path = '/usr/local/lib:/home/my_project/lib:$libdir:$libdir/cont
</varlistentry>
</varlistentry>
<varlistentry>
<varlistentry>
<term><varname>MAX_LOCKS_PER_
XACT
</varname> (<type>integer</type>)</term>
<term><varname>MAX_LOCKS_PER_
TRANSACTION
</varname> (<type>integer</type>)</term>
<listitem>
<listitem>
<para>
<para>
The shared lock table is sized on the assumption that at most
The shared lock table is sized on the assumption that at most
<varname>max_locks_per_
xact
</> * <varname>max_connections</varname> distinct objects will need
<varname>max_locks_per_
transaction
</> * <varname>max_connections</varname> distinct objects will need
to be locked at any one time. The default, 64, has historically
to be locked at any one time. The default, 64, has historically
proven sufficient, but you might need to raise this value if you
proven sufficient, but you might need to raise this value if you
have clients that touch many different tables in a single transaction.
have clients that touch many different tables in a single transaction.
...
...
src/backend/utils/misc/guc.c
View file @
dfdbf689
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* Support for grand unified configuration scheme, including SET
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
* command, configuration file, and command line options.
*
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.4
7 2001/09/07 00:27:29 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.4
8 2001/09/12 14:06:37 petere
Exp $
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
@@ -317,7 +317,7 @@ static struct config_int
...
@@ -317,7 +317,7 @@ static struct config_int
{
"max_fsm_pages"
,
PGC_POSTMASTER
,
&
MaxFSMPages
,
{
"max_fsm_pages"
,
PGC_POSTMASTER
,
&
MaxFSMPages
,
10000
,
1000
,
INT_MAX
,
NULL
,
NULL
},
10000
,
1000
,
INT_MAX
,
NULL
,
NULL
},
{
"max_locks_per_
xact
"
,
PGC_POSTMASTER
,
&
max_locks_per_xact
,
{
"max_locks_per_
transaction
"
,
PGC_POSTMASTER
,
&
max_locks_per_xact
,
64
,
10
,
INT_MAX
,
NULL
,
NULL
},
64
,
10
,
INT_MAX
,
NULL
,
NULL
},
{
"checkpoint_segments"
,
PGC_SIGHUP
,
&
CheckPointSegments
,
{
"checkpoint_segments"
,
PGC_SIGHUP
,
&
CheckPointSegments
,
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
dfdbf689
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
#shared_buffers = 64 # 2*max_connections, min 16
#shared_buffers = 64 # 2*max_connections, min 16
#max_fsm_relations = 100 # min 10
#max_fsm_relations = 100 # min 10
#max_fsm_pages = 10000 # min 1000
#max_fsm_pages = 10000 # min 1000
#max_locks_per_
xact = 64
# min 10
#max_locks_per_
transaction = 64
# min 10
#wal_buffers = 8 # min 4
#wal_buffers = 8 # min 4
#
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment