Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Less aggressive LSF #9038

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ert/scheduler/lsf_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from .driver import SIGNAL_OFFSET, Driver
from .event import Event, FinishedEvent, StartedEvent

_POLL_PERIOD = 2.0 # seconds
_POLL_PERIOD = 4.0 # seconds
LSF_FAILED_JOB = SIGNAL_OFFSET + 65 # first non signal returncode
"""Return code we use when lsf reports failed jobs"""

Expand Down Expand Up @@ -263,8 +263,8 @@ def __init__(
self._iens2jobid: MutableMapping[int, str] = {}
self._max_attempt: int = 100
self._sleep_time_between_bkills = 30
self._sleep_time_between_cmd_retries = 3
self._bsub_retries = 10
self._sleep_time_between_cmd_retries = 6
self._bsub_retries = 20

self._poll_period = _POLL_PERIOD

Expand Down
Loading