0

I'm trying to create a table of comparison of different messaging queue, from opensource to proprietary. and I'm trying to identify the issues and disadvantages of Azure Service Bus without availing the standard and premium tier. I would like to ask this question to those who experienced implementing it on their own application.

I tried researching for related topics but i cant find reliable resource.

I'm expecting a list of possible issue and disadvantages in general in any of this areas; features, limitations, experience, maturity, community, and performance.

PANDA MAN
  • 172
  • 1
  • 16
  • I'm not sure what drawbacks you're looking for. ASB is a broker, can be accessed from Kubernetes or any other cluster. – Sean Feldman Feb 06 '19 at 03:53
  • @SeanFeldman i edited my my question i hope this will add information to my question. sorry for my bad english. – PANDA MAN Feb 06 '19 at 04:21

1 Answers1

1

Service bus is just a medium to deliver messages from issuer to the receiver. it doesnt matter when they both are as long as they can talk to the service bus. your application can talk to service bus from inside the container just fine.

4c74356b41
  • 69,186
  • 6
  • 100
  • 141
  • hi, i'm a beginner on azure, thanks for the time answering my question. may i ask what do you mean by "Service bus is just a medium"? i'm a bit confused. is it different from a message queue like ZeroMQ and RabbitMQ? – PANDA MAN Feb 06 '19 at 06:22
  • in principle - not – 4c74356b41 Feb 06 '19 at 06:22
  • do you have reliable resource there where i can see this principles that you have mention? I don't get it sorry. – PANDA MAN Feb 06 '19 at 07:09
  • can we say that Azure service bus and ZeroMQ is different because Azure service bus in on network level on top of ZeroMQ which is on application level? is that a correct perspective? – PANDA MAN Feb 06 '19 at 23:21
  • https://stackoverflow.com/questions/731233/activemq-or-rabbitmq-or-zeromq-or also, consider accepting this answer ;) – 4c74356b41 Feb 07 '19 at 17:55