guardian

module
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 1, 2020 License: MIT

README

Guardian

CircleCI

Guardian is a global rate limiting proxy built on top of Envoy. It supports both synchronous and asynchronous global rate limiting. Synchronous rate limiting waits for a response from Redis before allowing or denying a request. Asynchronous rate limiting uses it's local counts to allow or deny a request and updates its counts with Redis outside of the request hot path. Synchronous rate limiting trades latency for "hard" rate limits. Asynchronous rate limiting has lower latency but can temporarily burst above the configured rate limit.

Check out our article introducing Guardian for more detail.

Running locally

The docker-compose files contained within e2e/ can be used to build and run Guardian locally.

docker-compose-sync.yml runs Guardian in synchronous blocking mode.

docker-compose -f e2e/docker-compose-sync.yml up

docker-compose-async.yml runs Guardian in asynchronous blocking mode.

docker-compose -f e2e/docker-compose-async.yml up

Once running, use the Guardian CLI to set the limit and disable report-only mode. NOTE You will see warnings about missing Redis keys in the logs until you do this step.

make cli
guardian-cli --redis-address localhost:6379 set-limit 3 1m true # 3 requests per 1 minute, ebaled
guardian-cli --redis-address localhost:6379 set-report-only false # don't just report, actually limit

To see rate limiting in action, use curl

curl -v localhost:8080/
curl -v localhost:8080/
curl -v localhost:8080/
curl -v localhost:8080/ # This one will be rate limited assuming you used the `set-limit` values from above

Testing

go test ./pkg/... # unit tests
make e2e # end to end tests

Directories

Path Synopsis
cmd
internal
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL