Is there an example how to implement rate limiting...
# flow
m
Is there an example how to implement rate limiting with Flow? I have an API client that is supposed to make hundreds of requests. X requests should run in parallel and as soon as one of the request receives a rate limiting error from the server, all request processing should pause until the waiting period is over.
g
I think custom operator with something like semaphore should help, don't think that there is something ready to use
🙏 1