Initialize rate limit settings
Because each network has different needs and application, you need to find out what the regular and peak loads in your network are before you set traffic limits. We recommend completing the following steps to benchmark request rates in your environment so that you can implement limits appropriate for your applications.
In the agent configuration file, specify a global rate limit with arbitrary values based on the following conditions:
- Environment where Consul servers are running
- Number of servers and the projected load
- Existing metrics expressing requests per second
Set the
limits.request_limits.mode
parameter in the agent configuration topermissive
. In the following example, the configuration allows up to 1000 reads and 500 writes per second for each Consul agent:Observe the logs and metrics for your application's typical cycle, such as a 24 hour period. Refer to Monitor traffic rate limit data for additional information. Call the
/agent/metrics
HTTP API endpoint and check the data for the following metrics:rpc.rate_limit.exceeded
with valueglobal/read
for labellimit_type
rpc.rate_limit.exceeded
with valueglobal/write
for labellimit_type
If the limits are not reached, set the
mode
configuration toenforcing
. Otherwise, continue to adjust and iterate until you find your network's unique limits.