~ubuntu-branches/ubuntu/maverick/libvirt/maverick

« back to all changes in this revision

Viewing changes to qemud/test_libvirtd.aug

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2009-02-11 01:01:42 UTC
  • mto: (3.4.1 sid) (1.2.1 upstream) (0.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090211010142-wk9mgtbw8bmp3zcb
Tags: upstream-0.6.0
ImportĀ upstreamĀ versionĀ 0.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
227
227
  \"joe@EXAMPLE.COM\",
228
228
  \"fred@EXAMPLE.COM\"
229
229
]
 
230
 
 
231
 
 
232
#################################################################
 
233
#
 
234
# Processing controls
 
235
#
 
236
 
 
237
# The maximum number of concurrent client connections to allow
 
238
# over all sockets combined.
 
239
max_clients = 20
 
240
 
 
241
 
 
242
# The minimum limit sets the number of workers to start up
 
243
# initially. If the number of active clients exceeds this,
 
244
# then more threads are spawned, upto max_workers limit.
 
245
# Typically you'd want max_workers to equal maximum number
 
246
# of clients allowed
 
247
min_workers = 5
 
248
max_workers = 20
 
249
 
 
250
# Total global limit on concurrent RPC calls. Should be
 
251
# at least as large as max_workers. Beyond this, RPC requests
 
252
# will be read into memory and queued. This directly impact
 
253
# memory usage, currently each request requires 256 KB of
 
254
# memory. So by default upto 5 MB of memory is used
 
255
max_requests = 20
 
256
 
 
257
# Limit on concurrent requests from a single client
 
258
# connection. To avoid one client monopolizing the server
 
259
# this should be a small fraction of the global max_requests
 
260
# and max_workers parameter
 
261
max_client_requests = 5
 
262
 
 
263
# Logging level:
 
264
log_level = 4
 
265
 
 
266
# Logging outputs:
 
267
log_outputs=\"4:stderr\"
 
268
 
 
269
# Logging filters:
 
270
log_filters=\"a\"
230
271
"
231
272
 
232
273
   test Libvirtd.lns get conf =
461
502
             { "1" = "joe@EXAMPLE.COM" }
462
503
             { "2" = "fred@EXAMPLE.COM" }
463
504
        }
 
505
        { "#empty" }
 
506
        { "#empty" }
 
507
        { "#comment" = "################################################################"}
 
508
        { "#comment" = ""}
 
509
        { "#comment" = "Processing controls"}
 
510
        { "#comment" = ""}
 
511
        { "#empty" }
 
512
        { "#comment" = "The maximum number of concurrent client connections to allow"}
 
513
        { "#comment" = "over all sockets combined."}
 
514
        { "max_clients" = "20" }
 
515
        { "#empty" }
 
516
        { "#empty" }
 
517
        { "#comment" = "The minimum limit sets the number of workers to start up"}
 
518
        { "#comment" = "initially. If the number of active clients exceeds this,"}
 
519
        { "#comment" = "then more threads are spawned, upto max_workers limit."}
 
520
        { "#comment" = "Typically you'd want max_workers to equal maximum number"}
 
521
        { "#comment" = "of clients allowed"}
 
522
        { "min_workers" = "5" }
 
523
        { "max_workers" = "20" }
 
524
        { "#empty" }
 
525
        { "#comment" = "Total global limit on concurrent RPC calls. Should be" }
 
526
        { "#comment" = "at least as large as max_workers. Beyond this, RPC requests" }
 
527
        { "#comment" = "will be read into memory and queued. This directly impact" }
 
528
        { "#comment" = "memory usage, currently each request requires 256 KB of" }
 
529
        { "#comment" = "memory. So by default upto 5 MB of memory is used" }
 
530
        { "max_requests" = "20" }
 
531
        { "#empty" }
 
532
        { "#comment" = "Limit on concurrent requests from a single client" }
 
533
        { "#comment" = "connection. To avoid one client monopolizing the server" }
 
534
        { "#comment" = "this should be a small fraction of the global max_requests" }
 
535
        { "#comment" = "and max_workers parameter" }
 
536
        { "max_client_requests" = "5" }
 
537
        { "#empty" }
 
538
        { "#comment" = "Logging level:" }
 
539
        { "log_level" = "4" }
 
540
        { "#empty" }
 
541
        { "#comment" = "Logging outputs:" }
 
542
        { "log_outputs" = "4:stderr" }
 
543
        { "#empty" }
 
544
        { "#comment" = "Logging filters:" }
 
545
        { "log_filters" = "a" }