You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all retries of dsmc operations are done after a fixed retry period.
In cases where big operations fail (ie. due to server malfunction, broken tape, etc) this can result in logs filling up when using the default retry delay of 60 seconds.
Investigate if we can do exponential backoff on "large" failures, should be identifiable with either dsmc return codes/messages or simply by realising that we're retrying the same files over and over...
The text was updated successfully, but these errors were encountered:
The fix in commit f866fb0 to not skip
damaged files turned out to be incomplete.
If a volume was flagged access=unavailable or similar then files on it
would not be included and we would see very frequent retries.
This commit changes the volume list retrieval to only ignore volumes that
are empty or are pending (ie. empty/reclaimed but on deletion hold due to
storage pool reusedelay!=0).
Should also reduce the impact of #21
Currently all retries of dsmc operations are done after a fixed retry period.
In cases where big operations fail (ie. due to server malfunction, broken tape, etc) this can result in logs filling up when using the default retry delay of 60 seconds.
Investigate if we can do exponential backoff on "large" failures, should be identifiable with either dsmc return codes/messages or simply by realising that we're retrying the same files over and over...
The text was updated successfully, but these errors were encountered: