- Newest
- Most votes
- Most comments
Based on your description, it seems like your files have been successfully restored from Glacier Deep Archive, but they still appear to be in the Glacier Deep Archive storage class. This situation is expected behavior in AWS. When you restore files from Glacier Deep Archive (or Glacier), the original objects remain in the Glacier Deep Archive, but AWS makes temporary copies of these files available for download or use in an Amazon S3 bucket for the duration of the restoration period you chose (in your case, a few days).
The message prompting you to "Initiate Restore" may still appear because the AWS Management Console doesn't dynamically update the storage class display in real-time to reflect the temporary availability of the restored object. However, since the restoration is complete and there's an expiration date mentioned, it indicates the temporary copies are indeed available for use.
Since Move, Copy, and Edit options are greyed out, it suggests that these actions are not directly available for objects in the Glacier Deep Archive storage class through the console's Object Actions. This is normal because Glacier Deep Archive is primarily for long-term archival, not frequent access or manipulation.
To move the restored files to another folder or perform actions on them, you should:
- Access the temporary copies: Use the available options to access the restored files. You might need to download them or use AWS CLI or SDKs to interact with them programmatically.
- Copy or move the files: Once you have access, you can upload them to another folder or bucket as needed. If you're using the AWS CLI, you can use the
aws s3 cp
oraws s3 mv
commands to copy or move the files.
Remember, once the restoration period expires, the temporary copies will no longer be accessible, and you would need to initiate another restore request to access the files again. If you plan to keep the files in a more readily accessible storage class, you should move them before the expiration date.
Relevant content
- AWS OFFICIALUpdated 10 months ago