Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
7b9eb391
Commit
7b9eb391
authored
1 year ago
by
leufen1
Browse files
Options
Downloads
Patches
Plain Diff
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
!522
filter can now combine obs, forecast, and apriori for first iteration. Further...
,
!521
Resolve "release v2.4.0"
,
!514
Resolve "load era5 data from toar db"
Pipeline
#140906
passed
1 year ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mlair/helpers/data_sources/data_loader.py
+2
-3
2 additions, 3 deletions
mlair/helpers/data_sources/data_loader.py
with
2 additions
and
3 deletions
mlair/helpers/data_sources/data_loader.py
+
2
−
3
View file @
7b9eb391
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment