sap-oc / crowbar-openstack

Openstack deployment for Crowbar
3 stars 1 forks source link

OpenStack API rate limit #21

Open tpatzig opened 7 years ago

tpatzig commented 7 years ago
aspiers commented 7 years ago

I am experimenting with an approach based on https://blog.codecentric.de/en/2014/12/haproxy-http-header-rate-limiting/.

Future work

aspiers commented 7 years ago

Unfortunately we can't limit based on the authentication token (which in keystone is X-Auth-Token not Authentication as previously suggested) because it can change with every API request if the API requests are triggered from the CLI :-( And there is no way to determine the user or tenant from the HTTP header. That must be why Rackspace bothered to write Repose.

However this kind of approach based on source IP works:

frontend nova-api
        bind 0.0.0.0:8774
        mode http

        option tcpka
        option httplog
        option forwardfor
        log 127.0.0.1:514 local0
        default_backend nova-api-backend

        option tcpka
        option httplog
        option forwardfor
        tcp-request inspect-delay 5s

        acl too_many_reqs_by_user sc0_gpc0_rate() gt 5
        acl mark_seen sc0_inc_gpc0 gt 0
        stick-table type string size 100k store gpc0_rate(20s)
        tcp-request content track-sc0 src

        use_backend be_429_slow_down if mark_seen too_many_reqs_by_user

backend be_429_slow_down
        mode http
        timeout tarpit 2s
        errorfile 500 /etc/haproxy/error-files/429.http
        http-request tarpit
aspiers commented 7 years ago

@mkoderer The exact HTTP response in this example is defined by the contents of /etc/haproxy/error-files/429.http (ignore the 500 which has no effect), for example:

HTTP/1.1 429 Too Many Requests
Cache-Control: no-cache
Connection: close
Content-Type: text/plain
Retry-After: 60

Too Many Requests (HAP429).
matelakat commented 7 years ago

internal discussions needed, and a pull request that can be used as a basis for testing

berendt commented 7 years ago

Have you checked Repose in front of HAProxy as mentioned by @aspiers? I think this could work for this use case, it includes an OpenStack Identity v3 filter.

https://repose.atlassian.net/wiki/display/REPOSE/Rate+Limiting+filter https://repose.atlassian.net/wiki/display/REPOSE/OpenStack+Identity+v3+filter

aspiers commented 6 years ago

Last I heard from SAP, it was good enough to limit based on source IP, so the above technique should work OK. If they need to limit per project then yes Repose is the way to go, but that would probably take quite a bit more effort to implement.