Live data from Hacker News

Now Open – AWS US East (Ohio) Region

aws.amazon.com

21–30 of 42 posts

Re: Now Open – AWS US East (Ohio) Region

#21
post #9

Earlier quoted context omitted.

If there's confusion about the concept of regions, it seems to be coming from Amazon themselves. They couldn't just call it the Ohio region?

Is that really an issue? Sometimes I get the number suffixes confused (like us-west-1 and us-west-2). Additionally, would you refer to the Sydney region or the New South Wales region?

For people from outside of North America, "us-east-2" is far more informative than "Ohio".

Re: Now Open – AWS US East (Ohio) Region

#22
As someone who works with a fairly large EC2 infrastructure, I find the move towards EBS-only instance types somewhat alarming. For me, the main draw of EBS is to ensure data is retained in the case of instance failure, but it comes with significantly lower performance than instance-store SSDs and is more expensive. I've resisted EBS for the most part, and all of my servers are treated as disposable, but AWS is obviously trying to get rid of it as an option. The only reason I can think of is the excessive amount of money they can charge for EBS instances (especially PIOPS)

Re: Now Open – AWS US East (Ohio) Region

#24
post #13

Earlier quoted context omitted.

Clickable - https://www.google.com/maps/search/40.103706,%20-83.199873 - https://www.google.com/maps/search/40.061121,%20-83.134998 - https://www.google.com/maps/search/40.094640,%20-82.751469 All 3 points: https://www.google.com/maps/dir/40.103706,+-83.199873/40.061...

Zooming in with satellite view shows that all three sites seem to not only have identically sized/shaped buildings, but they're also oriented the same way (long axis running east/west). Any theories on why? Something to do with cooling perhaps?

According to the Alliance to Save Energy, an east-west orientation "maximizes daylight, while minimizing unwanted heat losses and gains" [1]

[1] http://www.ase.org/resources/model-commercial-building-effic...

Re: Now Open – AWS US East (Ohio) Region

#25

As someone who works with a fairly large EC2 infrastructure, I find the move towards EBS-only instance types somewhat alarming. For me, the main draw of EBS is to ensure data is retained in the case of instance failure, but it comes with significantly lower performance than instance-store SSDs and is more expensive. I've resisted EBS for the most part, and all of my servers are treated as disposable, but AWS is obvio…

They're getting rid of instance stores because all of the bare metal can be diskless then except for the hypervisor boot media (they could even PXE bootstrap that if they wanted and run entirely ephemeral on the physical node). Think of the cost savings on the AWS compute hardware.

Anyway! Provisioned IOPS are sufficient for most workloads; if they're not for yours, you might consider a ramdisk (expensive) or going bare metal on physical servers (cheap).

Re: Now Open – AWS US East (Ohio) Region

#26
post #11

I really wish there was an API that allowed me to just get a list of all available regions including their descriptive names. As it stands, when AWS adds a region I have to make manual updates to update my systems. AWS has APIs for everything else, why not a comprehensive API for regions and their descriptive names? EDIT: for the downvoters - please specify exactly the REST API call that I make to get regions and the…

I'd be happy to serve this as a read only endpoint if you'd like.

Re: Now Open – AWS US East (Ohio) Region

#28
post #12

Interesting tidbit in the announcement: Data between the US-East-1 and US-East-2 regions is priced at the lower inter-AZ rate ($0.01 per GB, or half price). That's pretty great if you're looking to add a layer of regional redundancy.

It's actually cheaper than data transfer across AZs. Within a region, AWS charges 1 cent per GB in each direction. You pay a cent to send data from one instance and another cent to receive data on another instance. But between Virginia and Ohio, they charge 1 cent to send data (in either direction) but receiving data is free. In the end, it's actually cheaper to balance your servers across one AZ in Virginia and one AZ in Ohio, rather than 2 AZs in the same region.

But it's only a penny, right? How much could it matter? It actually matters a lot. At both my previous and current employers, a surprisingly large portion of our hill comes from data transfer across AZs. All the microservices, all the memcache hits, and all the database replication add up quickly.

Re: Now Open – AWS US East (Ohio) Region

#29

As someone who works with a fairly large EC2 infrastructure, I find the move towards EBS-only instance types somewhat alarming. For me, the main draw of EBS is to ensure data is retained in the case of instance failure, but it comes with significantly lower performance than instance-store SSDs and is more expensive. I've resisted EBS for the most part, and all of my servers are treated as disposable, but AWS is obvio…

Well, they still have the instance types where instance storage matters most, IMO: d2 and i2 (which are great for running things like Cassandra and HDFS).

Also, complementing toomuchtodo's comment, there's also now EBS types focused on almost all kinds of workloads: sc1 for cold data/archiving, st1 for workloads optimized for sequential scans (a Confluent benchmark even reported that Kafka ran better with st1 EBS than instance storage), io1/PIOPS for databases and gp2 for everything else.

Post reply on HN