INTERNAL_UNARCHIVE_FAILED Error Code
The INTERNAL_UNARCHIVE_FAILED error typically occurs when the platform encounters an issue while attempting to extract your deployment's archive. This is considered an internal error.
Table of Contents
- Understanding the Error
- Possible Causes
- Troubleshooting Steps
Understanding the Error
The INTERNAL_UNARCHIVE_FAILED error indicates that unarchiving a deployment or resource has failed. This issue is usually related to problems with the project structure, file inclusions, or deployment bundle size.
Possible Causes
- Project Structure Issues: Unnecessary files or directories included in your project might be causing the deployment size to increase.
- Deployment Bundle Size Exceeds Limits: For Serverless Functions, the maximum allowed uncompressed size is 250 MB. If your deployment exceeds this limit, unarchiving will fail.
Troubleshooting Steps
- Check Project Files: Review your project files to identify any unnecessary inclusions or redundant directories.
- Review Bundle Size: Adjust
includeFilesandexcludeFilesconfigurations to ensure the deployment size stays within limits. - Verify Configuration Settings: Ensure that your build settings are correctly configured to avoid including unnecessary files.
If you encounter this error, it's recommended to refer back to the platform's documentation for further assistance.
Last Updated
Last updated on July 24, 2024.
Looking for more information? Return to the Errors Documentation.