Earlier quoted context omitted.
Yeah, it's got to be much larger than the other regions, so it makes sense that we see more errors. Since error_rate = machines * error_rate_per_machine.
The whole region is down, you just calculated the chance of at least one machine having an error.
Amazon EC2 currently down. Affecting Heroku, Reddit, Others
171–180 of 311 posts
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#172All of our EC2 hosts appear to be functioning fine, but they can't connect to their RDS instance which renders our app useless. If you scroll down the page you'll also see that RDS instances are having connectivity issues. Not sure if it's related but for RDS users the impact is far worse. EDIT: We are also using multi-AZ RDS, so either Amazon's claims for multi-AZ are bs, or their claims that this is only impacting…
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#173All of our EC2 hosts appear to be functioning fine, but they can't connect to their RDS instance which renders our app useless. If you scroll down the page you'll also see that RDS instances are having connectivity issues. Not sure if it's related but for RDS users the impact is far worse. EDIT: We are also using multi-AZ RDS, so either Amazon's claims for multi-AZ are bs, or their claims that this is only impacting…
Our multi-AZ RDS instance did not failover correctly this time although it has in the past..
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#174Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#175Earlier quoted context omitted.
If it's systematically difficult to do it correctly, then the system is wrong.
. . . or the problem is inherently complex.
You're close. Put another way, "inherent complexity is the problem."
What I mean by that is, the more your system is coupled, the more it is brittle.
Frankly, this is AWS's issue. It is too coupled: RDS relies on EBS, the console relies on both, etc. Any connection between two systems is a POF and must be architected to let those systems operate w/o that connection. This is why SMTP works the way it does. Real time service delivery isn't the problem, but counting on it is.
Uncouple all the things!
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#176Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#177Earlier quoted context omitted.
. . . or the problem is inherently complex.
> . . . or the problem is inherently complex. You're close. Put another way, "inherent complexity is the problem." What I mean by that is, the more your system is coupled, the more it is brittle. Frankly, this is AWS's issue. It is too coupled: RDS relies on EBS, the console relies on both, etc. Any connection between two systems is a POF and must be architected to let those systems operate w/o that connection. This…
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#178This is why I trust Google's data centers http://www.google.com/about/datacenters/gallery/#/
This has to be a strong contender.
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#179This would be a great time to post a guide to architecting systems for failover using AWS. Anyone got a great guide?
We (Twilio) have released a number of articles & presentations in this area: http://www.slideshare.net/twilio/highavailability-infrastruc... http://www.twilio.com/engineering/2011/04/22/why-twilio-wasn... It's strategy as opposed to how-to but the principles apply.
Re: Amazon EC2 currently down. Affecting Heroku, Reddit, Others
#180How does Twilio manage to stay up when AWS goes down, and how much of that can the average developer reasonably do?