Skip to main content

Distributed async rate limiters, using Redis

Project description

PyPI test status coverage python version

Self limiters

A library for regulating traffic with respect to concurrency or time.

It implements a semaphore to be used when you need to limit the number of concurrent requests to an API (or other resources). For example if you can only send 5 concurrent requests.

It also implements the token bucket algorithm which can be used to limit the number of requests made in a given time interval. For example if you're restricted to 10 requests per second.

Both limiters are async, FIFO, and distributed using Redis. You should probably only use this if you need distributed queues.

This was written with rate-limiting in mind, but the semaphore and token bucket implementations can be used for anything.

Installation

pip install self-limiters

Usage

Both implementations are written as async context managers.

Semaphore

The Semaphore can be used like this:

from self_limiters import Semaphore


# 5 requests at the time
async with Semaphore(name="", capacity=5, max_sleep=60, redis_url=""):
      client.get(...)

We use blpop to wait for the semaphore to be freed up, under the hood, which is non-blocking.

If you specify a non-zero max_sleep, a MaxSleepExceededError will be raised if blpop waits for longer than that specified value.

Token bucket

The TokenBucket context manager is used the same way, like this:

from self_limiters import TokenBucket


# 1 requests per minute
async with TokenBucket(
        name="",
        capacity=1,
        refill_amount=1,
        refill_frequency=60,
        max_sleep=600,
        redis_url=""
):
    client.get(...)

The limiter first estimates when there will be capacity in the bucket - i.e., when it's this instances turn to go, then async sleeps until then.

If max_sleep is set and the estimated sleep time exceeds this, a MaxSleepExceededError is raised immediately.

As a decorator

The package doesn't ship any decorators, but if you would like to limit the rate at which a whole function is run, you can create your own, like this:

from self_limiters import Semaphore


# Define a decorator function
def limit(name, capacity):
  def middle(f):
    async def inner(*args, **kwargs):
      async with Semaphore(
              name=name,
              capacity=capacity,
              redis_url="redis://127.0.0.1:6389"
      ):
        return await f(*args, **kwargs)
    return inner
  return middle


# Then pass the relevant limiter arguments like this
@limit(name="foo", capacity=5)
def fetch_foo(id: UUID) -> Foo:

Implementation and performance breakdown

The library is written in Rust (for fun) and relies on Lua scripts and pipelining to improve the performance of each implementation.

Redis lets users upload and execute Lua scripts on the server directly, meaning we can write e.g., the entire token bucket logic in Lua. This present a couple of nice benefits:

  • Since they are executed on the redis instance, we can make 1 request to redis where we would otherwise have to make 3 or 4. The time saved by reducing the number of requests is significant.

  • Redis is single-threaded and guarantees atomic execution of scripts, meaning we don't have to worry about data races. In a prior iteration, when we had to make 4 requests to estimate the wake-up time for a token bucket instance, we had needed to use the redlock algorithm to ensure fairness. With Lua scripts, our implementations are FIFO out of the box.

So in summary they make our implementation faster, since we save several round-trips to the server and back and since we no longer need locks, and distributed locks are expensive. And they simultaneously make the code much, much simpler.

This is how each implementation has ended up looking:

The semaphore implementation

  1. Run a lua script to create a list data structure in redis, as the foundation of the semaphore.

    This script is idempotent, and skipped if it has already been created.

  2. Run BLPOP to non-blockingly wait until the semaphore has capacity, and pop from the list when it does.

  3. Then run a pipelined command to release the semaphore by adding back the capacity.

So in total we make 3 calls to redis, where we would have made 6 without the scripts, which are all non-blocking.

The token bucket implementation

The token bucket implementation is even simpler. The steps are:

  1. Run a lua script to estimate and return a wake-up time.
  2. Sleep until the given timestamp.

We make 1 call instead of 3, then sleep. Both are non-blocking.

In other words, the very large majority of time is spent waiting in a non-blocking way, meaning the limiters' impact on an application event-loop should be close to completely negligible.

Benchmarks

We run benchmarks in CI with Github actions. For a normal ubuntu-latest runner, we see runtimes for both limiters:

When creating 100 instances of each implementation and calling them at the same time, the average runtimes are:

  • Semaphore implementation: ~0.6ms per instance
  • Token bucket implementation: ~0.03ms per instance

Take a look at the benchmarking script if you want to run your own tests!

Implementation reference

The semaphore implementation

The semaphore implementation is useful when you need to limit a process to n concurrent actions. For example if you have several web servers, and you're interacting with an API that will only tolerate a certain amount of concurrent requests before locking you out.

The flow can be broken down as follows:

The initial lua script first checks if the redis list we will build the semaphore on exists or not. It does this by calling SETNX on the key of the queue plus a postfix (if the name specified in the class instantiation is "my-queue", then the queue name will be __self-limiters:my-queue and setnx will be called for __self-limiters:my-queue-exists). If the returned value is 1 it means the queue we will use for our semaphore does not exist yet and needs to be created.

It might strike you as weird to maintain a separate value, just to indicate whether a list exists, when we could just check the list itself. It would be nice if we could use EXISTS on the list directly, but unfortunately a list is considered not to exist when all elements are popped (i.e., when a semaphore is fully acquired), so I don't see another way of doing this. Contributions are very welcome if you do!

Then if the queue needs to be created we call RPUSH with the number of arguments equal to the capacity value used when initializing the semaphore instance. For a semaphore with a capacity of 5, we call RPUSH 1 1 1 1 1, where the values are completely arbitrary.

Once the list/queue has been created, we BLPOP to block until it's our turn. BLPOP is FIFO by default. We also make sure to specify the max_sleep based on the initialized semaphore instance setting. If nothing was passed we allow sleeping forever.

On __aexit__ we run three commands in a pipelined query. We RPUSH a 1 back into the queue to "release" the semaphore, and set an expiry on the queue and the string value we called SETNX on.

The expires are a half measure for dealing with dropped capacity. If a node holding the semaphore dies, the capacity might never be returned. If, however, there is no one using the semaphore for the duration of the expiry value, all values will be cleared, and the semaphore will be recreated at full capacity next time it's used. The expiry is 30 seconds at the time of writing, but could be made configurable.

The token bucket implementation

The token bucket implementation is useful when you need to limit a process by a time interval. For example, to 1 request per minute, or 50 requests every 10 seconds.

The implementation is forward-looking. It works out the time there would have been capacity in the bucket for a given client and returns that time. From there we can asynchronously sleep until it's time to perform our rate limited action.

The flow can be broken down as follows:

Call the schedule Lua script which first GETs the state of the bucket.

The bucket state contains the last time slot scheduled and the number of tokens left for that time slot. With a capacity of 1, having a tokens_left_for_slot variable makes no sense, but if there's capacity of 2 or more, it is possible that we will need to schedule multiple clients to the same time slot.

The script then works out whether to decrement the tokens_left_for_slot value, or to increment the time slot value wrt. the frequency variable.

Finally, we store the bucket state again using SETEX. This allows us to store the state and set expiry at the same time. The default expiry is 30 at the time of writing, but could be made configurable.

One thing to note, is that this would not work if it wasn't for the fact that redis is single threaded, so Lua scripts on Redis are FIFO. Without this we would need locks and a lot more logic.

Then we just sleep!

Contributing

Please do! Feedback on the implementation, issues, and PRs are all welcome. See CONTRIBUTING.md for more details.

Please also consider starring the repo to raise visibility.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

self_limiters-0.1.3-cp38-abi3-win_amd64.whl (591.9 kB view details)

Uploaded CPython 3.8+ Windows x86-64

self_limiters-0.1.3-cp38-abi3-win32.whl (565.8 kB view details)

Uploaded CPython 3.8+ Windows x86

self_limiters-0.1.3-cp38-abi3-musllinux_1_1_x86_64.whl (892.8 kB view details)

Uploaded CPython 3.8+ musllinux: musl 1.1+ x86-64

self_limiters-0.1.3-cp38-abi3-musllinux_1_1_aarch64.whl (844.4 kB view details)

Uploaded CPython 3.8+ musllinux: musl 1.1+ ARM64

self_limiters-0.1.3-cp38-abi3-manylinux_2_24_armv7l.whl (645.7 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.24+ ARMv7l

self_limiters-0.1.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (722.5 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.17+ x86-64

self_limiters-0.1.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (668.1 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.17+ ARM64

self_limiters-0.1.3-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (785.8 kB view details)

Uploaded CPython 3.8+ manylinux: glibc 2.12+ i686

self_limiters-0.1.3-cp38-abi3-macosx_11_0_arm64.whl (605.4 kB view details)

Uploaded CPython 3.8+ macOS 11.0+ ARM64

self_limiters-0.1.3-cp38-abi3-macosx_10_7_x86_64.whl (638.2 kB view details)

Uploaded CPython 3.8+ macOS 10.7+ x86-64

File details

Details for the file self_limiters-0.1.3-cp38-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7ba7ad3a04e3c0b0215577f3cbe8745554eca51f5e00c442a1421a34e44a3127
MD5 da95d09261ea7c24336e0519b3d45dde
BLAKE2b-256 9bf8b5d8ac08686a155fb9959f8c44b00953d6355bf6bfc60b3f8c820872839a

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-win32.whl.

File metadata

  • Download URL: self_limiters-0.1.3-cp38-abi3-win32.whl
  • Upload date:
  • Size: 565.8 kB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 0d0338f89ea53cf9d051db13cacae8043dc058d8e948d805977d701867b4c9a3
MD5 7119765eb977a7208284c657731e408a
BLAKE2b-256 623f1db0ed8f89f50eff87668f13c2c0d94197723af50a0c057224ac51cef303

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6acfb8b482494d82361484de7c1aafa7aae6829a2d3bdb6a1e09dd3e02e6505a
MD5 b1736138c481c97bf9d55e6a011bb7aa
BLAKE2b-256 e9519230cea81ac3bf1879616ee35bba63dc8040f102af6b50566244751f2790

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8475bffe24de178108b5a425991d6fa731a1471351cda5bb78bb950c2e107ce
MD5 d7f8b7e01988b55c74d07575899ea34d
BLAKE2b-256 c6a34f9aaaaa0b875071c4d3c03928ee68fd55e8ba96f46ceacc15fab759abe1

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0a72362dc7f2d01fcbdf9eabae8e115db240cdd73feeaec2eaf13bd1ede1217c
MD5 646b91e377e25ac169fe20b095ee7405
BLAKE2b-256 ab03bda1b18c427fb0ab7617a1cd0178f50d98ab92cc516f60a915bc618ddc25

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9bdd94a56d98ef7d67b295d5468e47bff27b863417a44fa125be8b7f76c30bd
MD5 1ba89c404689a91fdba001e8e6be1f54
BLAKE2b-256 36257885e1d0ae5479a2cda393543b71bc58286802d0cf6c74bac4fdcbf5f0a9

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ede10dce5377600b2ca746ad622bfd0d50160b48f37b442a7af7fa953b223d4f
MD5 52859ff1a97b012c35140c61f29289cd
BLAKE2b-256 7f3f60b877f31c6af4eab9992362dfd6385dd3e7723b2e6eec2131e10a66a90e

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3079b9d73a29d878790be66499e906945b9d68bf042b7bea4517f6fed86731ee
MD5 3f9954e09ac273d52c78026fc44b76a7
BLAKE2b-256 c04cf799386e4a79e24cbf101ed253e74329a9591ee01ed2857acb38cdb5b888

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f43f6430bc159e667d53335168142816d242020575a9113cf78da11065dd630
MD5 2d90a745effd887146a1bc28a0be8fac
BLAKE2b-256 bb1676e09e9dd3928a2bc4f2d6811bf2c4a93085872ffaa438ecf7dc5df563c9

See more details on using hashes here.

File details

Details for the file self_limiters-0.1.3-cp38-abi3-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for self_limiters-0.1.3-cp38-abi3-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e86c943f88a6181d047ef1660ba5be6375acefd0c9f8bf159c44866b63c23076
MD5 5c79f12bea40250860486183f55330dd
BLAKE2b-256 f1b41159f4bcef621221b1eaedab66a961cf47bd04de8e47074acdbdd7796596

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page