controlflow.properties 792 B

123456789101112131415161718192021
  1. # if a request waits in queue for more than 60 seconds it's not worth
  2. # executing, the client will likely have given up by then
  3. timeout=60
  4. # don't allow the execution of more than 100 requests total in parallel
  5. ows.global=100
  6. # don't allow more than 10 GetMap in parallel
  7. ows.wms.getmap=10
  8. # don't allow more than 4 outputs with Excel output as it's memory bound
  9. ows.wfs.getfeature.application/msexcel=4
  10. # don't allow a single user to perform more than 6 requests in parallel
  11. # (6 being the Firefox default concurrency level at the time of writing)
  12. user=6
  13. # don't allow the execution of more than 16 tile requests in parallel
  14. # (assuming a server with 4 cores, GWC empirical tests show that throughput
  15. # peaks up at 4 x number of cores. Adjust as appropriate to your system)
  16. ows.gwc=16