up vote 47 down vote favorite
30
share [g+] share [fb]

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?

link|improve this question

67% accept rate
1  
Great question (+1). Better fit for Server Fault though? – Jonik Jun 8 '11 at 9:04
feedback

7 Answers

up vote 28 down vote accepted

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

link|improve this answer
1  
Second link is broken. Should maybe be: docs.amazonwebservices.com/AWSEC2/2009-11-30/… – Andrew B. Jun 16 '10 at 5:35
@Andrew B Thanks, link updated now. – ConroyP Jun 16 '10 at 10:45
You'll also need to resize the filesystem. You're probably looking for "resize2fs - ext2/ext3/ext4 file system resizer". – James Moore Mar 9 '11 at 18:12
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:

  1. unmount ebs volume
  2. create a ebs snapshot
  3. add new volume with more space
  4. recreate partition table and resize filesystem
  5. mount the new ebs volume

Look at http://aws.amazon.com/ebs/ - EBS Snapshot:

Snapshots can also be used to instantiate multiple new volumes, expand the size of a volume or move volumes across Availability Zones. When a new volume is created, there is the option to create it based on an existing Amazon S3 snapshot. In that scenario, the new volume begins as an exact replica of the original volume. By optionally specifying a different volume size or a different Availability Zone, this functionality can be used as a way to increase the size of an existing volume or to create duplicate volumes in new Availability Zones. If you choose to use snapshots to resize your volume, you need to be sure your file system or application supports resizing a device.

link|improve this answer
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

link|improve this answer
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/

link|improve this answer
+1 thanks for posting this, it was most helpful. – CLJ Jan 5 '11 at 18:45
+1 again... works like a charm – Jai Nov 26 '11 at 15:17
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.

link|improve this answer
2  
Can you post more information about how this is done via the web console? The console may be able to resize the volume, but how does it handle resizing of the partition inside of the volume, especially if it is of a type like XFS, BRTFS, etc? – Riyad Kalla Nov 4 '11 at 16:40
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:

  • it must be configured ahead of time
  • a simple JBOD setup means you lose everything if you lose one "disk"
link|improve this answer
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)

diskpart.exe

select disk=9

select volume=Z

extend

[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.]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.