Message Queuing Hosting for Java Application in AWS us-east?

I am looking for a message queue as a service that ...

  • .. hosted at AWS us-east
  • .. offers a real PubSub (not a poll!)
  • .. can be used in production
  • .. offers high availability
  • .. has a good client for Java

I found CloudAMQP (still in beta), AppEngine Task Queue (not AWS), SQS (for polling only), Redis To Go (no high availability stream? -Stream-stream full of problems) and IronMQ (for polling only) )

What am I missing?

+6
source share
3 answers

It looks like Iron.io added pub / sub. Maybe this fits your needs now? He also seems to beanstalkd, so you can freely easily switch to an independent solution at some point in the future (if you feel like it!).

+1
source

You should check available open PaaS (for example, Cloudify, OpenShift or Cloudfoundry) using a PaaS that can be easily used on most services and in most popular message queues, such as ActiveMQ, RabitMQ or SonicMQ.

Cloudify (which I am one of its contributors), open source and free, can onboard laminate any message queue that you want on any cloud. You can easily connect to ActiveMQ, RabitMQ, SonicMQ or another service with which you worked with the cloud.

+3
source

Have you tried clean messaging solutions? http://www.pubnub.com/faq or http://pusher.com ? According to their sites, they are present on EC2.

0
source

Source: https://habr.com/ru/post/915500/


All Articles