rate-limiting Questions
4
Solved
I'm working with Laravel 5.8 and I wanted to set up a Rate Limiter that limits accessing to route by per minute and also IP address.
So I added this to RouteServiceProvider.php:
protected function ...
Disgust asked 23/1, 2022 at 9:51
1
I'm looking to services or solutions for distributed rate limiter for an application I'm building. These applications are concurrent AWS lambda functions. The downstream API has a rate limit of 100...
Prussiate asked 25/1, 2022 at 21:3
2
I am writing a web crawler that is running parallel fetches for many different domains. I want to limit the number of requests-per-second that are made to each individual domain, but I do not care ...
Randi asked 7/4, 2018 at 13:54
5
Let's say, I have P processes running some business logic on N physical machines. These processes call some web service S, say. I want to ensure that not more than X calls are made to the service S...
Zavala asked 19/7, 2015 at 9:53
2
I've created a website that uses the YouTube data API to get YouTube data for a chosen user. This has always worked fine for me, but the amount of traffic is now at a level that embedding YouTube i...
Glynnis asked 7/2, 2017 at 17:35
5
Solved
I'm writing a small script in Python 2.7.3 with GRequests and lxml that will allow me to gather some collectible card prices from various websites and compare them. Problem is one of the websites l...
Unstop asked 27/11, 2013 at 16:6
6
Solved
Possible/partial duplicates:
What’s a good rate limiting algorithm?
Throttling method calls to M requests in N seconds
Best way to implement request throttling in ASP.NET MVC?
I am looking for ...
Vandalism asked 20/9, 2009 at 3:24
3
Solved
I'm fairly new to Laravel and am currently using an API that has a limit of 25 requests per minute.
I have a controller method sendRequest() which is used by all methods to send requests to the API...
Echeverria asked 29/6, 2020 at 15:50
1
Im using Laravel's builtin throttle like this:
//File: Kernal
protected $middlewareGroups = [
'api' => ['throttle:10,3']
];
However, I would like to reset the count after certain action in on...
Ayana asked 2/5, 2018 at 3:35
2
I am looking for a way to restrict when a function is called, but only when the input parameters are different, that is:
@app.task(rate_limit="60/s")
def api_call(user):
do_the_api_call()
for i ...
Somnambulate asked 24/4, 2015 at 17:42
0
I've been encountering a problem for some time using Android's TelephonyManager. We use the TelephonyManager for phone signal live surveying purposes but in an attempt to move up to targeting API 2...
Fleawort asked 21/1, 2021 at 16:57
1
Solved
I have an API that has accepts 20 requests per minute, after that, I need to wait for 1 minute before querying it. I have a list of items (usually 1000+) whose details I need to query from the API,...
Misdeed asked 21/1, 2021 at 10:41
4
Solved
I launched my first open repository project, EphChat, and people promptly started flooding it with requests.
Does Firebase have a way to rate limit requests in the security rules? I assume there's ...
Puffball asked 18/7, 2014 at 16:47
3
Solved
So i have created an automation bot to do some stuff for me on the internet .. Using Selenium Python..After long and grooling coding sessions ..days and nights of working on this project i have fin...
Belligerency asked 3/12, 2020 at 15:23
2
Solved
I have a question regarding NGINX rate limiting.
Is it possible to do rate limiting based on the decoded value of JWT token? I cannot find any information like this in the docs.
Or even if there is...
Porbeagle asked 8/10, 2020 at 13:45
1
I need to implement Rate Limiting (based on URL and path) on applications deployed on Kubernetes Cluster (EKS).
I'm looking for a managed way that involves least scripting and does provide an inter...
Eucharis asked 19/10, 2020 at 10:56
0
I have to retrieve a large dataset from a web API (NCBI entrez) that limits me to a certain number of requests per second, say 10 (the example code will limit you to three without an API key). I'm ...
Biysk asked 19/5, 2020 at 3:28
1
I am trying to add limit requests per IP on Google App Engine FLex NodeJs, I saw this rate-limiting-nginx documentation where Rate Limiting is applied on Nginx, but how can I use it inside my App E...
Billowy asked 30/9, 2018 at 11:11
2
I have a defined zone in Nginx for limiting requests, it's plain straight forward as described in their documentation:
limit_req_zone $binary_remote_addr zone=leash:10m rate=18r/s;
So far so good...
Varve asked 24/4, 2018 at 9:50
1
Solved
I'm trying to apply rate limiting on some of our internal services (inside the mesh).
I used the example from the docs and generated redis rate limiting configurations that include a (redis) handl...
Vosges asked 17/12, 2019 at 16:8
7
Solved
How can I limit a function to only run 10 times per second, but continue execution when new "spots" are available? This means we'd call the function 10 times as soon as possible, and when 1 second ...
Justicz asked 26/11, 2015 at 20:3
3
I have a question about how to slow down my api requests. For a particular third party API I am hitting allows me to make 3 requests every 2 seconds. If I go over that number I am returned status c...
Nylon asked 14/11, 2016 at 18:35
4
Has OkHttp an integrated way of complying with an api rate request limit, or it has to be implemented externally? either case a hint on where to start is appreciated.
Roee asked 12/2, 2016 at 14:18
3
Solved
I have a path (mysite.com/myapiendpoint for sake of example) that is both resource intensive to service, and very prone to bot abuse. I need to rate limit access to that specific path to something ...
Omnibus asked 27/9, 2018 at 18:42
1
I'm designing a .NET client application for an external API. It's going to have two main responsibilities:
Synchronization - making a batch of requests to API and saving responses to my database ...
Leek asked 16/8, 2019 at 9:52
© 2022 - 2025 — McMap. All rights reserved.