2019-04-08 15:14:08 +00:00
|
|
|
# RateLimit
|
2019-02-26 13:50:07 +00:00
|
|
|
|
|
|
|
Protection from Too Many Calls
|
|
|
|
{: .subtitle }
|
|
|
|
|
|
|
|
![RateLimit](../assets/img/middleware/ratelimit.png)
|
|
|
|
|
|
|
|
The RateLimit middleware ensures that services will receive a _fair_ number of requests, and allows you define what is fair.
|
|
|
|
|
|
|
|
## Configuration Example
|
|
|
|
|
2019-04-08 15:14:08 +00:00
|
|
|
```yaml tab="Docker"
|
|
|
|
# Here, an average of 5 requests every 3 seconds is allowed and an average of 100 requests every 10 seconds.
|
|
|
|
# These can "burst" up to 10 and 200 in each period, respectively.
|
|
|
|
labels:
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.extractorfunc=client.ip"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.period=10s"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.average=100"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.burst=200"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.period=3s"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.average=5"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.burst=10"
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```yaml tab="Kubernetes"
|
|
|
|
# Here, an average of 5 requests every 3 seconds is allowed and an average of 100 requests every 10 seconds.
|
|
|
|
# These can "burst" up to 10 and 200 in each period, respectively.
|
|
|
|
apiVersion: traefik.containo.us/v1alpha1
|
|
|
|
kind: Middleware
|
|
|
|
metadata:
|
|
|
|
name: test-ratelimit
|
|
|
|
spec:
|
|
|
|
rateLimit:
|
2019-06-18 10:20:04 +00:00
|
|
|
extractorFunc: client.ip
|
|
|
|
rateset:
|
|
|
|
rate0:
|
|
|
|
period: 10s
|
|
|
|
average: 100
|
|
|
|
burst: 200
|
|
|
|
rate1:
|
|
|
|
period: 3s
|
|
|
|
average: 5
|
|
|
|
burst: 10
|
2019-04-08 15:14:08 +00:00
|
|
|
```
|
|
|
|
|
2019-04-15 16:22:07 +00:00
|
|
|
```json tab="Marathon"
|
|
|
|
"labels": {
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.extractorfunc": "client.ip",
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.period": "10s",
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.average": "100",
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.burst": "200",
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.period": "3s",
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.average": "5",
|
|
|
|
"traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.burst": "10"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-04-08 15:14:08 +00:00
|
|
|
```yaml tab="Rancher"
|
|
|
|
# Here, an average of 5 requests every 3 seconds is allowed and an average of 100 requests every 10 seconds.
|
|
|
|
# These can "burst" up to 10 and 200 in each period, respectively.
|
|
|
|
labels:
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.extractorfunc=client.ip"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.period=10s"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.average=100"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate0.burst=200"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.period=3s"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.average=5"
|
|
|
|
- "traefik.http.middlewares.test-ratelimit.ratelimit.rateset.rate1.burst=10"
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```toml tab="File"
|
|
|
|
# Here, an average of 5 requests every 3 seconds is allowed and an average of 100 requests every 10 seconds.
|
|
|
|
# These can "burst" up to 10 and 200 in each period, respectively.
|
|
|
|
[http.middlewares]
|
|
|
|
[http.middlewares.test-ratelimit.ratelimit]
|
|
|
|
extractorfunc = "client.ip"
|
2019-03-29 11:34:05 +00:00
|
|
|
|
2019-06-12 15:22:07 +00:00
|
|
|
[http.middlewares.test-ratelimit.ratelimit.rateset.rate0]
|
2019-04-08 15:14:08 +00:00
|
|
|
period = "10s"
|
|
|
|
average = 100
|
|
|
|
burst = 200
|
2019-03-29 11:34:05 +00:00
|
|
|
|
2019-06-12 15:22:07 +00:00
|
|
|
[http.middlewares.test-ratelimit.ratelimit.rateset.rate1]
|
2019-04-08 15:14:08 +00:00
|
|
|
period = "3s"
|
|
|
|
average = 5
|
|
|
|
burst = 10
|
|
|
|
```
|
2019-02-26 13:50:07 +00:00
|
|
|
|
|
|
|
## Configuration Options
|
|
|
|
|
2019-04-03 12:32:04 +00:00
|
|
|
### `extractorfunc`
|
2019-02-26 13:50:07 +00:00
|
|
|
|
|
|
|
The `extractorfunc` option defines the strategy used to categorize requests.
|
|
|
|
|
|
|
|
The possible values are:
|
|
|
|
|
|
|
|
- `request.host` categorizes requests based on the request host.
|
|
|
|
- `client.ip` categorizes requests based on the client ip.
|
|
|
|
- `request.header.ANY_HEADER` categorizes requests based on the provided `ANY_HEADER` value.
|
|
|
|
|
2019-04-08 15:14:08 +00:00
|
|
|
### `ratelimit`
|
2019-02-26 13:50:07 +00:00
|
|
|
|
2019-04-03 12:32:04 +00:00
|
|
|
You can combine multiple rate limits.
|
|
|
|
The rate limit will trigger with the first reached limit.
|
2019-02-26 13:50:07 +00:00
|
|
|
|
2019-04-03 12:32:04 +00:00
|
|
|
Each rate limit has 3 options, `period`, `average`, and `burst`.
|
2019-02-26 13:50:07 +00:00
|
|
|
|
|
|
|
The rate limit will allow an average of `average` requests every `period`, with a maximum of `burst` request on that period.
|
|
|
|
|
|
|
|
!!! note "Period Format"
|
|
|
|
|
|
|
|
Period is to be given in a format understood by [time.ParseDuration](https://golang.org/pkg/time/#ParseDuration).
|