Errors
DSAR-FS-1001: STORAGE_FILESYSTEM_RETRY_EXHAUSTED
Alpha
DSAR is currently in alpha. APIs, package surfaces, configuration, and documentation may change as the project evolves.
Meaning
A filesystem storage operation failed after exhausting all configured retry attempts.
Probable Causes
- Persistent I/O errors (permission denied, disk full, file locked) across all retries.
- The target directory or mount point became unavailable during operation.
- Retry budget (
retryMaxAttempts) is too low for the current error rate.
How to Fix
- Inspect
error.details.lastErrorfor the message of the final failed attempt. - Verify the storage directory exists and has correct read/write permissions.
- Check available disk space on the target volume.
- Increase
retryMaxAttemptsin the storage adapter configuration if appropriate.
Retryable
No — retries are already exhausted. Address the root cause before retrying the outer operation.