I'm quite impressed with Amazon's EC2 and EBS services. I wanted to know if it is possible to grow an EBS Volume.
For example: If I have a 50 GB volume and I start to run out of space, can I bump it up to 100 GB when required?
|
I'm quite impressed with Amazon's EC2 and EBS services. I wanted to know if it is possible to grow an EBS Volume. For example: If I have a 50 GB volume and I start to run out of space, can I bump it up to 100 GB when required?
| |||||
feedback
|
|
You can grow the storage, but it can't be done on the fly. You'll need to take a snapshot of the current block, add a new, larger block and re-attach your snapshot. There's a simple walkthrough here based on using Amazon's EC2 command line tools | |||||||||
feedback
|
|
You can't simply 'bump in' more space on the fly if you need it, but you can resize the partition with a snapshot. Steps do to this:
Look at http://aws.amazon.com/ebs/ - EBS Snapshot:
| |||
|
feedback
|
|
As long a you are okay with a few minutes of downtime, Eric Hammond has written a good article on resizing the root disk on a running EBS instance: http://alestic.com/2010/02/ec2-resize-running-ebs-root | |||
|
feedback
|
|
I have written a tutorial to grow the size of your ebs volume at - http://aws-musings.com/how-to-expand-your-ebs-volume/ | |||||
|
feedback
|
|
You can now do this through the AWS Management Console. The process is the same as in the other answers but you no longer need to go to the command line. | |||||
feedback
|
|
BTW: As with physical disks, it might be handy to use LVM; ex: http://www.davelachapelle.ca/guides/ubuntu-lvm-guide/ http://www.centos.org/docs/5/html/Cluster_Logical_Volume_Manager/ Big advantage: It allows adding (or removing) space dynamically. It can also easily be moved between/among instances. Caveats:
| |||
|
feedback
|
|
Use command "diskpart" for Windows OS, have a look here : Use http://support.microsoft.com/kb/300415 Following are the steps I followed for a non-root disk (basic not dynamic disk) Once you have taken a snapshot, dismounted the old EBS volume (say 600GB) and created a larger EBS volume (say 1TB) and mounted this new EBS volume - you would have to let Windows know of the resizing (from 600GB to 1TB) so at command prompt (run as administrator)
[my disk 9,volume labelled Z, was a volume of size 1TB created from an ec2-snapshot of size 600GB - I wanted to resize 600GB to 1TB and so could follow the above steps to do this.] | |||
|
feedback
|