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
cee63eab
Commit
cee63eab
authored
Dec 18, 2008
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation table describing how shared memory is used by
various facilities.
parent
a666d285
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
25 deletions
+19
-25
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+19
-25
No files found.
doc/src/sgml/runtime.sgml
View file @
cee63eab
<!-- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.42
3 2008/12/16 19:30:43 alvherre
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.42
4 2008/12/18 17:03:09 momjian
Exp $ -->
<chapter Id="runtime">
<title>Operating System Environment</title>
...
...
@@ -1080,41 +1080,45 @@ set semsys:seminfo_semmsl=32
<table id="shared-memory-parameters">
<title>Configuration parameters affecting
<productname>PostgreSQL</productname>'s shared memory usage</>
<title><productname>PostgreSQL</productname> shared memory usage</>
<tgroup cols="2">
<thead>
<row>
<entry>
Nam
e</>
<entry>Approximate
multiplier (bytes per increment) as of 8.3
</>
<entry>
Usag
e</>
<entry>Approximate
shared memory bytes required (as of 8.3)
</>
</row>
</thead>
<tbody>
<row>
<entry><xref linkend="guc-max-connections"></>
<entry>1800 + 270 * <xref linkend="guc-max-locks-per-transaction"></entry>
<entry>Connections</>
<entry>(1800 + 270 * <xref
linkend="guc-max-locks-per-transaction">) * <xref
linkend="guc-max-connections"></entry>
</row>
<row>
<entry><xref linkend="guc-autovacuum-max-workers"></>
<entry>1800 + 270 * <xref linkend="guc-max-locks-per-transaction"></entry>
<entry>Autovacuum workers</>
<entry>(1800 + 270 * <xref
linkend="guc-max-locks-per-transaction">) * <xref
linkend="guc-autovacuum-max-workers"></entry>
</row>
<row>
<entry><xref linkend="guc-max-prepared-transactions"></>
<entry>770 + 270 * <xref linkend="guc-max-locks-per-transaction"></entry>
<entry>Prepared transactions</>
<entry>(770 + 270 * <xref
linkend="guc-max-locks-per-transaction">) * <xref linkend="guc-max-prepared-transactions"></entry>
</row>
<row>
<entry>
<xref linkend="guc-shared-buffers">
</>
<entry>
8400 (assuming 8 kB <symbol>BLCKSZ</>)
</entry>
<entry>
Shared disk buffers
</>
<entry>
(<xref linkend="guc-block-size"> + 208) * <xref linkend="guc-shared-buffers">
</entry>
</row>
<row>
<entry>
<xref linkend="guc-wal-buffers">
</>
<entry>
8200 (assuming 8 kB <symbol>XLOG_BLCKSZ</>)
</entry>
<entry>
WAL buffers
</>
<entry>
(<xref linkend="guc-wal-block-size"> + 8) * <xref linkend="guc-wal-buffers">
</entry>
</row>
<row>
...
...
@@ -1125,18 +1129,8 @@ set semsys:seminfo_semmsl=32
</tgroup>
</table>
<note>
<para>
The multipliers for <varname>shared_buffers</> and
<varname>wal_buffers</> should be the number of buffers, not the
amount in bytes. To find out the number of shared or wal buffers, divide
the amount in bytes by <xref linkend="guc-block-size"> and
<xref linkend="guc-wal-block-size">, respectively.
</para>
</note>
</sect2>
<sect2>
<title>Resource Limits</title>
...
...
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