- Newest
- Most votes
- Most comments
The overall process works based on disk access. You can try and initialize it faster by hitting every block of the disk to attempt to load it faster. Otherwise it may be beneficial for you to look into FRS https://aws.amazon.com/blogs/aws/new-amazon-ebs-fast-snapshot-restore-fsr/
The new Amazon EBS Provisioned Rate for Volume Initialization feature is designed to directly solve the issue reported in the referenced re:Post question about slow initialization times when restoring an EBS volume from a snapshot.
https://aws.amazon.com/about-aws/whats-new/2025/05/ebs-provisioned-rate-volume-initialization/
With the new Provisioned Rate for Volume Initialization, you can specify a predictable initialization rate (between 100 and 300 MiB/s) at the time of volume creation. This ensures that snapshot data is downloaded and written to the volume at the specified rate, making initialization time both faster and predictable, regardless of how the volume is accessed after creation.
Key Benefits for the Reported Scenario:
- Predictable and Faster Initialization: Instead of waiting for the first access to each block, the entire volume is initialized at the rate you specify, so you know exactly how long the process will take.
- No Need for Manual Block Reads: This eliminates the need for manual scripts or utilities to read every block just to trigger initialization.
- Works at Scale: The feature is especially useful when initializing multiple volumes concurrently, as in mass EC2 launches or disaster recovery scenarios.
Relevant content
- asked 4 years ago
- asked 3 years ago

Could you elaborate more on "The overall process works based on disk access"? How it based on disk access? I know the FRS mechanism but just want to know how the initilize works in background when we use the disk normally.