Puppet Class: swift::proxy::ratelimit
- Defined in:
- manifests/proxy/ratelimit.pp
Overview
Class: swift::proxy::ratelimit
Configure swift ratelimit.
See Swift’s ratelimit documentation for more detail about the values.
Parameters
- clock_accuracy
-
(optional) The accuracy of swift proxy servers’ clocks. 1000 is 1ms max difference. No rate should be higher than this. Defaults to 1000
- max_sleep_time_seconds
-
(optional) Time before the app returns a 498 response. Defaults to 60.
- log_sleep_time_seconds
-
(optional) if >0, enables logging of sleeps longer than the value. Defaults to 0.
- rate_buffer_seconds
-
(optional) Time in second the rate counter can skip. Defaults to 5.
- account_ratelimit
-
(optional) if >0, limits PUT and DELETE requests to containers Defaults to 0.
Dependencies
Examples
Authors
Francois Charlier fcharlier@ploup.net
Copyright
Copyright 2012 eNovance licensing@enovance.com
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'manifests/proxy/ratelimit.pp', line 43
class swift::proxy::ratelimit(
$clock_accuracy = 1000,
$max_sleep_time_seconds = 60,
$log_sleep_time_seconds = 0,
$rate_buffer_seconds = 5,
$account_ratelimit = 0
) {
include swift::deps
swift_proxy_config {
'filter:ratelimit/use': value => 'egg:swift#ratelimit';
'filter:ratelimit/clock_accuracy': value => $clock_accuracy;
'filter:ratelimit/max_sleep_time_seconds': value => $max_sleep_time_seconds;
'filter:ratelimit/log_sleep_time_seconds': value => $log_sleep_time_seconds;
'filter:ratelimit/rate_buffer_seconds': value => $rate_buffer_seconds;
'filter:ratelimit/account_ratelimit': value => $account_ratelimit;
}
}
|