When you hit the rate limits on getstream
, the APIs start responding with errors.
What is the recommended approach as a backoff strategy to handle those failures and start recovery after that. I thought about logging them all and send all of them again after a minute or hour.
But what if user created a post (failed to be created on getstream, waiting for a backoff) and meanwhile user deletes it. The backoff script will send the post
to getstream
even if user deleted it.
What is recommended by getstream
or anyone handled the situation like that?