Earlier quoted context omitted.
DO provides VMs and Kubernetes as a service. AWS provides Freaking everything as a service. You might need Redis. You might need Postgres. You might need Hadoop, NFS, A Monitoring Solution, Access Controls for your account, Docker Repo Hosting... AWS does all of these things as managed services (though some not very well). You definitely don't want to run your RDBMS on Kubernetes, and while DO's "Marketplace" has a s…
> You definitely don't want to run your RDBMS on Kubernetes If you’re targeting AWS you’re probably better off using their solution, but you can totally run your database on k8s. And for some uses it’s even a good idea.
Amazon.com Announces Second Quarter Sales Up 20%
111–120 of 147 posts
Re: Amazon.com Announces Second Quarter Sales Up 20%
#112Re: Amazon.com Announces Second Quarter Sales Up 20%
#113Earlier quoted context omitted.
AWS is basically "run your entire company's engineering as a service" now, and they've done a good job at it. It's not at all easy to compete with such an integrated and battle-tested platform (other than on cost; AWS can be pretty expensive).
This is absolutely true, sure, but the UX is dreadful. If someone like, say, DigitalOcean who has nice design spent the money to actually compete, I'd move in a heartbeat. Google is a nonstarter, and Azure is a 'maybe'. Most people use a few key services. Everytime I log in, I'm slammed with 200 tiny hyperlinks.
Re: Amazon.com Announces Second Quarter Sales Up 20%
#114Two interesting points: 1) Close to 70% of Amazon operating income once again can be attributed to AWS. Consolidated operating income: $3,084 m AWS operating income: $2,121 m 2) AWS revenue was $8.3B for the quarter, 37% more than the same quarter last year.
What's interesting isn't the fact that they "make" more from AWS, it's that AWS gets premium margins where their store is running right at cost (and has been, basically forever -- it's their thing, sorta). The interesting number you left out was the non-AWS revenue, which in 2018 (too lazy to correlate with today's announcement) was $230B , literally 30x higher. AWS is a tiny drop in the bucket, no matter what the pr…
Re: Amazon.com Announces Second Quarter Sales Up 20%
#115Earlier quoted context omitted.
This is absolutely true, sure, but the UX is dreadful. If someone like, say, DigitalOcean who has nice design spent the money to actually compete, I'd move in a heartbeat. Google is a nonstarter, and Azure is a 'maybe'. Most people use a few key services. Everytime I log in, I'm slammed with 200 tiny hyperlinks.
Why is Google a nonstarter?
There is nothing to be discussed here. If you compare do with azure, google and aws and are talking about the interface being most important: you clearly are not the enterprisish client aws/azure/google is aiming for.
Re: Amazon.com Announces Second Quarter Sales Up 20%
#116Earlier quoted context omitted.
AWS is basically "run your entire company's engineering as a service" now, and they've done a good job at it. It's not at all easy to compete with such an integrated and battle-tested platform (other than on cost; AWS can be pretty expensive).
This is absolutely true, sure, but the UX is dreadful. If someone like, say, DigitalOcean who has nice design spent the money to actually compete, I'd move in a heartbeat. Google is a nonstarter, and Azure is a 'maybe'. Most people use a few key services. Everytime I log in, I'm slammed with 200 tiny hyperlinks.
That might be unique to you, I've been using google and I've very much enjoyed the experience, why doesn't it work for you?
Re: Amazon.com Announces Second Quarter Sales Up 20%
#117Earlier quoted context omitted.
This is absolutely true, sure, but the UX is dreadful. If someone like, say, DigitalOcean who has nice design spent the money to actually compete, I'd move in a heartbeat. Google is a nonstarter, and Azure is a 'maybe'. Most people use a few key services. Everytime I log in, I'm slammed with 200 tiny hyperlinks.
Where I work we spend millions per month on AWS, its our primary cloud platform. At that scale the UI of the console really doesn't matter, everything is IAC so developers rarely need to directly access AWS. The one thing we do use is the Cost and Usage explorer which has a reasonable UI
Okay, but those "rare" times when you do need to access the infrastructure, having good UI is pretty helpful.
Re: Amazon.com Announces Second Quarter Sales Up 20%
#118Earlier quoted context omitted.
This is absolutely true, sure, but the UX is dreadful. If someone like, say, DigitalOcean who has nice design spent the money to actually compete, I'd move in a heartbeat. Google is a nonstarter, and Azure is a 'maybe'. Most people use a few key services. Everytime I log in, I'm slammed with 200 tiny hyperlinks.
We are looking to move some of our applications to the cloud and Kubernetes the coming time. We'd like to go for DO, partially for the horror the AWS interface appears to be. Could you give me an idea what we'd be missing by choosing DO over AWS? (as your comment appears to say we would)
Google Cloud has a ton of built-in support and UI for Kubernetes clusters. They make it really nice. It's roughly the same price, so I'm not sure I'd run Kubernetes on any other service.
Re: Amazon.com Announces Second Quarter Sales Up 20%
#119Earlier quoted context omitted.
> You definitely don't want to run your RDBMS on Kubernetes If you’re targeting AWS you’re probably better off using their solution, but you can totally run your database on k8s. And for some uses it’s even a good idea.
If you're new to Kubernetes, you shouldn't attempt to run a RDBMS, especially if it's not a dev/staging DB and/or needs to run in a HA config. Operators aren't mature and if you're rolling your own statefulset you better know what you're doing (with kubernetes and with the DB you're running).
I've been doing this for a while. Before there were statefulsets, it was pretty painful. But now, it's relatively easy. Sure, not as easy as a PaaS database that seems to just work, but much easier than managing a cluster of servers with all sorts of crazy scripts.
Re: Amazon.com Announces Second Quarter Sales Up 20%
#120Earlier quoted context omitted.
This is absolutely true, sure, but the UX is dreadful. If someone like, say, DigitalOcean who has nice design spent the money to actually compete, I'd move in a heartbeat. Google is a nonstarter, and Azure is a 'maybe'. Most people use a few key services. Everytime I log in, I'm slammed with 200 tiny hyperlinks.
We are looking to move some of our applications to the cloud and Kubernetes the coming time. We'd like to go for DO, partially for the horror the AWS interface appears to be. Could you give me an idea what we'd be missing by choosing DO over AWS? (as your comment appears to say we would)
* Access control for everything via IAM. This for me is the killer feature for AWS, almost anything from users, to servers, to individual IoT devices can be granted permission to access other AWS resources with extreme granularity.
* Audit logging of every single API call, user invoked or otherwise, via Cloudtrail.
* Monitoring of and responding to key metrics via Cloudwatch. This isn’t just graphs as it can appear on the surface, Cloudwatch alarms allow you to do things like killing individual servers if they start throwing errors while others aren’t.
* Responding to changes in your infrastructure via Cloudtrail. We’re using this for features ranging from emailing our security team when a new IAM user is provisioned, through to full release orchestration.
* All those features supported across services that can fulfil more or less any requirement you have, whether that’s a MySQL database, a message queue, or (should you really need it) a satellite downlink.
DO are fine if what you want really is just a server in a data centre somewhere, but you’re missing out on a lot of really powerful management features with them, without even getting into the other services AWS have.