1,106 questions
Tooling
0
votes
1
replies
72
views
Dealing with third party rate limits
I have been working on AWS Serverless Lambdas and now having issues with third party rate limits.
Context
A Lambda invocation triggered by an event:
calls a third-party API 4 times,
runs some logic,...
0
votes
0
answers
733
views
AWS Bedrock Throttling Exception when using Sonnet 3.5 Sonnet
I am using Sonnet 3.5 via AWS Bedrock and facing the dreaded 'Throttling Exception' every single time.
Here are the CloudWatch log from my latest run.
In Summary: The first call works: It uses up ...
0
votes
0
answers
41
views
What to expect when using CombineLatestStream with throttle for streams with different frequencies?
Im trying to combine 3 streams
accelerometer stream from sensors_plus
orientation stream from flutter_rotation_sensor
location stream from geolocator
Im using CombineLatestStream from rxdart to ...
0
votes
0
answers
156
views
Linux kernel cgroup v2 CFS - cpu throttled_usec accounting?
In Linux kernel cgroup v2’s CFS scheduler, how is cpu.stat throttled_usec accounted when a cgroup with multiple threads gets throttled during a single quota period?
Specifically, is throttled_usec ...
2
votes
0
answers
130
views
How to apply Throttle only to successful request?
I need Throttle to trigger only on successful requests (statusCode 200-300).
It is desirable that this behavior be configurable on a per route basis.
I tried writing the code in skipIf:
...
1
vote
0
answers
24
views
Laravel Passport $tokenResult is null, Alternative to Modifying vendor Folder for Rate-Limiting Middleware
I am using Laravel Passport for token authentication and facing an issue where $tokenResult is null. I suspect the default rate limit (throttle:60,1) is exceeded, so I temporarily modified the vendor\...
0
votes
1
answer
78
views
Key-based debounce in Kotlin Flows
I have a flow of key-value pairs (e.g. Flow<Pair<String, Int>>) which I would like to debounce/throttle based on the key, so that when some sequence of pairs with non-unique keys comes I ...
1
vote
0
answers
47
views
JS scroll listener for animation causing page jump during mobile scroll
I have written some custom code for an 'animation'. The animation counts for 0 to a certain number as specified in the function. This works fine on desktop but on my android phone it is causing the ...
1
vote
1
answer
211
views
How to add leading as options for throttle function?
I have an utility functions in TypeScript, named throttle, that I frequently use for controlling the execution rate of functions. However, I would like to extend these functions to support leading ...
1
vote
1
answer
91
views
GitHub Throttling while using OAuth Apps with TOTP authorization
We Use Github OAuth Apps to use Github APIs. We have enabled TOTP to handle authentication. Suddenly today we were being throttled while trying to do authorization with TOTP. Message was We were ...
0
votes
1
answer
353
views
In AWS API Gateway, can method level limits for a specific end point exceed stage level limit?
I'm working with AWS API Gateway and I need to configure throttle limits for a specific method that exceed the stage-level limits.
Here’s the scenario:
Stage-level throttle limits: rate: 10 requests ...
0
votes
0
answers
86
views
Are AWS Lambda functions automatically queued in a way that's aware of concurrency limit?
Suppose I have AWS Lambda functions X and Y, and X immediately issues 5000 asynchronous calls to Y before exiting. The default concurrency limit is 1000, so only 1000 instances of Y will immediately ...
0
votes
1
answer
167
views
phone Bluetooth throttling
Does the phone Android O/S ever throttle Bluetooth?
I have developed an Android phone app that receives sensor data from a smart ring at 100 Hz via BTLE. Sensor data is written to a file on the phone....
1
vote
0
answers
40
views
I want to use Throttle in an MVC controller to control the flow rate
I'm using Tomcat's web server, and I have a process that retrieves a large amount of data. I'm trying to respond to a request from a client and only do it 5 times in 10 seconds.
For Apache camel, I'm ...
1
vote
1
answer
137
views
Swiftui view stops updating during scrolling with state change from Combine
My application has transitioned to using Combine with throttle to slow down screen updates. This is working fine except for the side effect that the view doesn't update when scrolling. The code below ...