About 540,000 results
Open links in new tab
  1. What is the benefit of using exponential backoff? - Stack Overflow

    Feb 26, 2015 · Exponential backoff is beneficial when the cost of testing the condition is comparable to the cost of performing the action (such as in network congestion). if the cost of …

  2. O que é um é backoff exponencial? - Stack Overflow em Português

    Sep 1, 2018 · Binary exponential backoff Truncated binary exponential backoff (Esse segundo é quase igual o anterior, mas com aquele limite máximo que eu comentei de intervalo) Leitura …

  3. How does ExponentialBackoffRetry works with ServiceBus Trigger …

    Jun 7, 2021 · For the exponential retries, you likely need to keep the total backoff time + processing to less than what a function can hold on to the message or else the lock will expire, …

  4. Retry Celery tasks with exponential back off - Stack Overflow

    Mar 16, 2012 · 3 FYI, celery has a util function to calculate exponential backoff time with jitter here, so you don't need to write your own.

  5. Calculating delay with exponential backoff - Stack Overflow

    Jan 8, 2019 · This is an example of exponential backoff where the first step is only half of the delay? The purpose of it is to not delay too much for the very first step, that's all.

  6. How does the exponential backoff configured in Google Pub/Sub's ...

    Jul 30, 2020 · Retry policy fields for minimum backoff and maximum backoff are similar to InitialInterval and MaxInterval in your example above. Cloud Pub/Sub uses a similar formula …

  7. Multi-threaded requests with rate-limiting and exponential backoff

    Mar 18, 2025 · So I need to implement exponential backoff as well. And I can't figure out how to make a thread-safe exponential back-off implementation with rate limiting that shares state …

  8. How does retry_exponential_backoff work in Airflow tasks?

    May 16, 2023 · How do the parameters retries, retry_delay and retry_exponential_backoff interact? When there is a retry, when is it scheduled? Exponential backoff sounds interesting, …

  9. Python backoff decorator library for retrying with exception …

    Jan 24, 2023 · The backoff decorator library documentation is precarious. How to correctly specify the decorator parameters @backoff.on_exception(max_tries=10, something_else=blablabla, …

  10. Problem with exponential backoff in Spring Retry

    Nov 27, 2023 · Problem with exponential backoff in Spring Retry - delayExpression doesn't work with multiplierExpression Asked 2 years ago Modified 2 years ago Viewed 3k times