首頁 > 後端開發 > Python教學 > 直到「requests」庫支援指數退避的自動重試

直到「requests」庫支援指數退避的自動重試

Barbara Streisand
發布: 2024-12-27 15:00:15
原創
294 人瀏覽過

TIL that the `requests` library supports automatic retries with exponential backoff

您可以使用自訂適配器,並對所有 HTTP/HTTPS 請求強制以指數退避因子進行多次重試。請參閱下面的範例:

import requests
from requests import adapters
from urllib3.util import Retry

# Create a transport adapter with a custom retry strategy.
retries = Retry(
    total=3,
    backoff_factor=3,
    status_forcelist=[500, 502, 503, 504]
)
adapter = adapters.HTTPAdapter(max_retries=retries)

# Ensure adapter is used for both HTTP and HTTPS requests.
session = requests.Session()
session.mount('https://', adapter)
session.mount('http://', adapter)

# Testing the retry mechanism
response = session.get("http://httpbin.org/status/500")
登入後複製

這將傳回以下錯誤:

RetryError: HTTPConnectionPool(host='httpbin.org', port=80): Max retries exceeded with url: /status/500 (Caused by ResponseError('too many 500 error responses'))
登入後複製

不幸的是,似乎沒有辦法知道上述機制嘗試了多少次重試,只有當所有嘗試都已用盡時

參考

https://stackoverflow.com/a/47475019/4477547

以上是直到「requests」庫支援指數退避的自動重試的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板