Errors
DSAR-VB-1001: STORAGE_VERCEL_BLOB_FETCH_FAILED
Alpha
DSAR is currently in alpha. APIs, package surfaces, configuration, and documentation may change as the project evolves.
Meaning
Fetching the binary payload of a Vercel Blob object failed after a successful HEAD request.
Probable Causes
- The blob URL returned by
HEADis no longer accessible. - Network interruption between the backend and Vercel Blob storage.
- The blob was deleted or moved between the
HEADandGETrequests. - Vercel Blob returned a non-2xx HTTP status code.
How to Fix
- Check
error.details.httpStatusfor the HTTP status code of the failed fetch. - Verify the blob exists in the Vercel Blob dashboard.
- Confirm the
BLOB_READ_WRITE_TOKENis valid and has read permissions. - Retry if the failure is transient.
Retryable
Yes, when the cause is a transient network error. Persistent 4xx responses are not retryable.
Minimal Trigger Example
A getObject call where the blob URL returns a non-OK HTTP response.