Skip to content
Snippets Groups Projects
Commit 7b9eb391 authored by leufen1's avatar leufen1
Browse files

increase backoff_factor and max_retries for cases when toardb is idle

parent de954f6a
No related branches found
No related tags found
3 merge requests!522filter can now combine obs, forecast, and apriori for first iteration. Further...,!521Resolve "release v2.4.0",!514Resolve "load era5 data from toar db"
Pipeline #140906 passed
......@@ -97,7 +97,6 @@ def get_data(opts: Dict, headers: Dict, as_json: bool = True) -> Union[Dict, Lis
"""
url = create_url(**opts)
try:
logging.warning(url)
with TimeTracking(name=url):
response = retries_session().get(url, headers=headers, timeout=(5, None)) # timeout=(open, read)
if response.status_code == 200:
......@@ -148,9 +147,9 @@ def create_url(base: str, service: str, param_id: Union[str, int, None] = None,
return url
def retries_session(max_retries=3):
def retries_session(max_retries=5):
retry_strategy = Retry(total=max_retries,
backoff_factor=0.1,
backoff_factor=1,
status_forcelist=[429, 500, 502, 503, 504],
method_whitelist=["HEAD", "GET", "OPTIONS"])
adapter = HTTPAdapter(max_retries=retry_strategy)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment