~ubuntu-branches/ubuntu/trusty/swift/trusty

« back to all changes in this revision

Viewing changes to doc/manpages/object-server.conf.5

  • Committer: Package Import Robot
  • Author(s): Chuck Short, James Page, Chuck Short
  • Date: 2013-08-13 10:37:13 UTC
  • mfrom: (1.2.21)
  • Revision ID: package-import@ubuntu.com-20130813103713-1ctbx4zifyljs2aq
Tags: 1.9.1-0ubuntu1
[ James Page ]
* d/control: Update VCS fields for new branch locations.

[ Chuck Short ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
.IP \fBbacklog\fR
61
61
TCP backlog. Maximum number of allowed pending connections. The default value is 4096.
62
62
.IP \fBworkers\fR
63
 
Number of object server workers to fork. The default is 1.
 
63
The number of pre-forked processes that will accept connections.  Zero means
 
64
no fork.  The default is auto which will make the server try to match the
 
65
number of effective cpu cores if python multiprocessing is available (included
 
66
with most python distributions >= 2.6) or fallback to one.  It's worth noting
 
67
that individual workers will use many eventlet co-routines to service multiple
 
68
concurrent requests.
 
69
.IP \fBmax_clients\fR
 
70
Maximum number of clients one worker can process simultaneously (it will
 
71
actually accept(2) N + 1). Setting this to one (1) will only handle one request
 
72
at a time, without accepting another request concurrently. The default is 1024.
64
73
.IP \fBuser\fR
65
74
The system user that the object server will run as. The default is swift.
66
75
.IP \fBswift_dir\fR
120
129
Request timeout to external services. The default is 3 seconds.
121
130
.IP \fBconn_timeout\fR
122
131
Connection timeout to external services. The default is 0.5 seconds.
123
 
.IP \fBmax_clients\fR
124
 
Maximum number of clients one worker can process simultaneously (it will
125
 
actually accept(2) N + 1). Setting this to one (1) will only handle one request
126
 
at a time, without accepting another request concurrently. By increasing the
127
 
number of workers to a much higher value, one can reduce the impact of slow file system
128
 
operations in one request from negatively impacting other requests. The default is 1024.
129
132
.RE
130
133
.PD
131
134