Amazon Launches New RabbitMQ Message Broker Service
21–30 of 78 posts
Re: Amazon Launches New RabbitMQ Message Broker Service
#22Earlier quoted context omitted.
good - my job is really easy bad - my job is really boring
Somehow I don't think physical laborers ever complain when they get new and more powerful tools to make their job easier. It's only software engineers that bemoan their lives getting easier, so they can spend more time working on other problems higher up the abstraction chain.
Re: Amazon Launches New RabbitMQ Message Broker Service
#23Cloud computing seems to be a winner take all scenario. For example, if you use AWS and need a message broker service then you'll use this. If you use Azure, you'll use their version. Development seems like just hooking up this components. I can't tell if this is a good thing or a bad thing.
good - my job is really easy bad - my job is really boring
Re: Amazon Launches New RabbitMQ Message Broker Service
#24Open source is free to do what you will, but how many PR's does AWS send back to origin?
I've seen growing levels of AWS contribution back to upstream projects over the past four years. Teams start out by operating a piece of software at scale, whether it is Redis, Kubernetes, etc. After they have operated it for a while they discover the bugs or performance issues, or customers of the service complain about something. At that point the team now has enough real world experience with that software to begin to contribute back to upstream.
It takes time: to learn the ins and outs of the software well enough to know where and what improvements should be made, to understand the software's design and history well enough not to make bad suggestions or contributions that were already determined to be dead ends in the past, and to earn the approval of the community and existing maintainers enough to get significant contributions accepted in the first place.
Re: Amazon Launches New RabbitMQ Message Broker Service
#25Another bold innovative move from AWS.
To be honest, charging for things that other people have created and released for free _is_ pretty bold! ha
Re: Amazon Launches New RabbitMQ Message Broker Service
#26Re: Amazon Launches New RabbitMQ Message Broker Service
#27Earlier quoted context omitted.
good - my job is really easy bad - my job is really boring
Somehow I don't think physical laborers ever complain when they get new and more powerful tools to make their job easier. It's only software engineers that bemoan their lives getting easier, so they can spend more time working on other problems higher up the abstraction chain.
Re: Amazon Launches New RabbitMQ Message Broker Service
#28From the FAANG, Amazon strikes me as the one using most open source code while at the same time not having much to show as open source - firecracker is a (relative) toy.
Re: Amazon Launches New RabbitMQ Message Broker Service
#29Cloud computing seems to be a winner take all scenario. For example, if you use AWS and need a message broker service then you'll use this. If you use Azure, you'll use their version. Development seems like just hooking up this components. I can't tell if this is a good thing or a bad thing.
The first is application complexity. A lot of real workloads are quite complex but do not need to scale out a lot. The cloud and all the hype is organised around simple workloads that need to scale out easily which is an easy win. So for example Netflix or a SaaS application with a few tens of endpoints and a React front end or something. The wide sprawling real businesses are a terrible fit and tend to get rather expensive rather quickly when you start putting their workloads into the cloud. There is marginal aggregate cost benefit over actually buying hardware ($4m a year SQL server clusters are a reality in the cloud), the real benefit being only agility.
The second is simply "hooking up components" sounds really easy. But it's not. I think perhaps 50% of my time is working out why X won't talk to Y or why Z is broken and finding some opaque abstraction which doesn't allow me to get to the bottom of the problem. It's very very easy to turn your deployment into a complete tangle of chaos and circular dependencies which are very hard to rationalise and automate even with state of the art automation tools (which I will say tend to melt in your hands). This is existing layering on top of the same concerns you had before rather than a different one.
Thirdly we have to work out the difference between mature products and hype. Nearly all solutions are described in little blog snippets that make things look really easy for a specific and narrow use case but realistically things are really fucking complicated and in some cases absolutely awfully described in documentation. In a lot of cases, including AWS, it's actually hard to find someone at the cloud vendor who knows how something works when you break it. And sometimes there are solutions which are just absolutely dire. Again pointing the finger here at Amazon's managed ElasticSearch.
Fourthly, you end up being perpetual bean counter afraid of the rube goldberg machine waking in the middle of the night due to some event you didn't anticipate and drinking the content of your credit card in a few minutes. Some of the cost management and spot instance management software automates this rather nicely into a whole cluster of new failure modes as well just as if the complexity wasn't enough already. A trite version of this is "saving money costs money and sometimes the benefits are less than the costs"
So what you end up doing is trading your original problems for a set of new and shiny ones which are possibly even more complicated.
But at least you only have one vendor to shout at, which is a net win if you've ever tried to get HPE and Cisco to work out what fucked up mess is going on between their two lumps of iron.
I digress but be careful with assumptions about it being magical unicorns. They poop and you have to shovel it.
Re: Amazon Launches New RabbitMQ Message Broker Service
#30Cloud computing seems to be a winner take all scenario. For example, if you use AWS and need a message broker service then you'll use this. If you use Azure, you'll use their version. Development seems like just hooking up this components. I can't tell if this is a good thing or a bad thing.