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
9a39ba4b
Commit
9a39ba4b
authored
Dec 27, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Trivial patch to increase max_fsm_pages as per earlier discussion.
Philip Warner
parent
72884399
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+2
-2
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 @
9a39ba4b
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.16
4 2002/12/10 01:57:46
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.16
5 2002/12/27 14:06:34
momjian Exp $
-->
<Chapter Id="runtime">
...
...
@@ -1709,7 +1709,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
<para>
Sets the maximum number of relations (tables) for which free
space will be tracked in the shared free-space map. The default
is 100. This option can only be set at server start.
is 100
0
. This option can only be set at server start.
</para>
</listitem>
</varlistentry>
...
...
src/backend/utils/misc/guc.c
View file @
9a39ba4b
...
...
@@ -5,7 +5,7 @@
* command, configuration file, and command line options.
* See src/backend/utils/misc/README for more information.
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10
8 2002/12/02 05:20:47 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.10
9 2002/12/27 14:06:34 momjian
Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
...
@@ -632,7 +632,7 @@ static struct config_int
{
{
"max_fsm_relations"
,
PGC_POSTMASTER
},
&
MaxFSMRelations
,
100
,
10
,
INT_MAX
,
NULL
,
NULL
100
0
,
10
,
INT_MAX
,
NULL
,
NULL
},
{
{
"max_fsm_pages"
,
PGC_POSTMASTER
},
&
MaxFSMPages
,
...
...
src/backend/utils/misc/postgresql.conf.sample
View file @
9a39ba4b
...
...
@@ -48,7 +48,7 @@
# Shared Memory Size
#
#shared_buffers = 64 # 2*max_connections, min 16, typically 8KB each
#max_fsm_relations = 100 # min 10, fsm is free space map, ~40 bytes
#max_fsm_relations = 100
0
# min 10, fsm is free space map, ~40 bytes
#max_fsm_pages = 10000 # min 1000, fsm is free space map, ~6 bytes
#max_locks_per_transaction = 64 # min 10
#wal_buffers = 8 # min 4, typically 8KB each
...
...
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