Errors

DSAR-FS-1001: STORAGE_FILESYSTEM_RETRY_EXHAUSTED

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

  1. Inspect error.details.lastError for the message of the final failed attempt.
  2. Verify the storage directory exists and has correct read/write permissions.
  3. Check available disk space on the target volume.
  4. Increase retryMaxAttempts in the storage adapter configuration if appropriate.

Retryable

No — retries are already exhausted. Address the root cause before retrying the outer operation.

Minimal Trigger Example