Git Product home page Git Product logo

Comments (6)

alisaifee avatar alisaifee commented on August 16, 2024

Hi @twolfson https://github.com/alisaifee/limits/blob/1.0.6/limits/storage.py#L249 refers to https://github.com/andymccurdy/redis-py/blob/master/redis/lock.py#L9 which uses redis for its locking.

from limits.

twolfson avatar twolfson commented on August 16, 2024

Ah, sorry. I must have gotten my thoughts confused. Thanks for clarifying.

from limits.

twolfson avatar twolfson commented on August 16, 2024

On a tangent from this, is the locking mechanism required? In case of a denial of service attack, then that would require requests to be held open longer which is more likely to take the service down due to running out of connections.

from limits.

alisaifee avatar alisaifee commented on August 16, 2024

The lock is only used in the moving window implementation and isn't strictly required as in the worst case only one extra request would get through. At the very least I think a reasonably small timeout when trying to acquire the lock could help. Failure to acquire the lock within the timeout could result in the rate limit being marked as 'hit' as a client is bursting at a rate high enough to hit a lock is probably not up to any good. What do you think?

from limits.

twolfson avatar twolfson commented on August 16, 2024

I think both options have their benefits. It most likely boils down to whether the developer wants to be as performant as possible or as accurate as possible.

Marking the lock acquisition as a failure might be interesting. How would it work with a non-responsive Redis instance? In those cases, it might be better to 500 rather than 429.

from limits.

alisaifee avatar alisaifee commented on August 16, 2024

@twolfson: I've added a lock timeout in b6b755d
If the lock can't be acquired it will raise a LockError which when used with Flask-Limiter will currently result in a 500 error. I'll further add new options in Flask-Limiter to configure what to do when an error is encountered when attempting to rate limit a route.

from limits.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.