Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodburi
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
zodburi
Commits
dc8cb352
Commit
dc8cb352
authored
Apr 13, 2017
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document (old and new) conection parameters
parent
9a493729
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
0 deletions
+66
-0
docs/index.rst
docs/index.rst
+66
-0
No files found.
docs/index.rst
View file @
dc8cb352
...
...
@@ -94,9 +94,75 @@ These arguments relate to connections created from the database.
connection_cache_size
integer (default 10000)
Target size, in number of objects, of each connection's object
cache.
connection_cache_size_bytes
integer (default 0)
Target size, in total estimated size for objects, of each
connection's object cache. 0 means no limit.
A suffix of KB, MB, or GB may be used to provide units.
connection_historical_cache_size
integer (default 1000)
Target size, in number of objects, of each historical connection's
object cache.
connection_historical_cache_size_bytes
integer (default 0)
Target size, in total estimated size of objects, of each historical
connection's object cache.
A suffix of KB, MB, or GB may be used to provide units.
connection_historical_pool_size
integer (default 3)
The expected maximum total number of historical connections
simultaneously open.
connection_historical_timeout
integer (default 300)
Maximum age of inactive historical connections When a historical
connection has remained unused in a historical connection pool for
more than connection_historical_timeout seconds, it will be
discarded and it's resources released.
connection_large_record_size
integer (default 16MB)
When object records are saved that are larger than this, a warning
is issued, suggesting that blobs should be used instead.
A suffix of KB, MB, or GB may be used to provide units.
connection_pool_size
integer (default 7)
The expected maximum number of simultaneously open connections.
There is no hard limit (as many connections as are requested
will be opened, until system resources are exhausted). Exceeding
pool-size connections causes a warning message to be logged,
and exceeding twice pool-size connections causes a critical
message to be logged.
connection_pool_timeout
integer (default unlimited)
Maximum age of inactive (non-historical) connections When a
connection has remained unused in a connection pool for more than
connection_pool_timeout seconds, it will be discarded and it's
resources released.
The minimum interval that an unused (non-historical)
connection should be kept.
Blob-related
++++++++++++
...
...
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