Reputation: 5384
I would like to scale up so I wanted to know if I can upgrade my current 64 bits EC2 m1.Medium instance into a 64 bits m1.Large instance.
Is that the right way to scale up (bare in mind I'm running a small site)?
After I upgrade to the new instance and terminate the old one, will there be a difference between the 2 instances?
Thanks in advanced.
Upvotes: 0
Views: 1123
Reputation: 22451
Is that the right way to scale up (bare in mind I'm running a small site)?
It would work, but to minize risk and downtime some people prefer to create an AMI from their existing instance, then create a new, upgraded instance from that AMI. This way you can test the new instance while the old one is still runing. Once you're satisfied with the new instance, just reassign the elastic IP of the old one to the new one.
After I upgrade to the new instance and terminate the old one, will there be a difference between the 2 instances?
Other than increased memory, CPU and storage, there should be little difference. The filesystem content should be identical.
Upvotes: 1
Reputation: 91
Just as a precaution, make sure to make a snapshot before you upgrade your instance. Otherwise, yes, it should work just fine. Check out this similar answer
Upvotes: 1