Questions tagged [mq]

The term 'mq' refers either to the general topic of message queuing or any of several implementations of messaging middleware with "MQ" in the name. For purposes of Stack Overflow, use the product-specific tags when appropriate. When the question does not refer to a specific product, it is probably better to use the tag [message-queue] or [jms] because of the association of the term 'mq' with specific well-known products.

The term 'mq' refers either to the general topic of message queuing or any of several implementations of messaging middleware with "MQ" in the name. For the purposes of Stack Overflow, use the product-specific tags when appropriate. When the question does not refer to a specific product, it is probably better to use the tag or because of the association of the term 'mq' with specific well-known products.

See also:






645 questions
7
votes
1 answer

Appropriate approach for Message Queue / Scheduled tasks in Django

I'm wondering what criteria would need to be considered when we need to use some kind of task queue in a django project, I'm thinking in performace, development speed, flexibility, etc. I've been using Celery+RabbitMQ and Django-ztask+ZeroMQ…
trinchet
  • 6,753
  • 4
  • 37
  • 60
6
votes
1 answer

Using Websphere MQ Topic .NET API

I read this article And still didn't understand the notion of how topics works in MQ. In JMS I know that you can publish a message on a Topic, and in order to receive a message from it you first need to subscribe to it (using the subscription name…
Guy
  • 915
  • 2
  • 14
  • 27
6
votes
3 answers

what is the difference between MQ and MQTT?

I am beginner to MQTT , but what is confusing me is it's basic definition MQTT is a publish-subscribe based "light weight" messaging protocol'. Based on my previous understanding on MQ (Message Queue), both MQ and MQTT sounds very same to me.…
student
  • 63
  • 1
  • 4
6
votes
1 answer

Routing messages in RabbitMQ topic exchange that do NOT match a pattern

Two queues are bound to a topic exchange with the following routing keys: Queue A, bound with routing key pattern match *.foo Queue B, bound with routing key pattern match *.bar I'd like to add a third queue to this exchange that receives messages…
changingrainbows
  • 2,551
  • 1
  • 28
  • 35
6
votes
3 answers

Programmatically setting access control limits in mosquitto

I am working on an application that will use mqtt. I will be using the python library. I have been leaning towards using mosquitto but can find no way of programmatically setting access control limits for it. The application I'm writing needs to be…
Charlie Andrews
  • 1,457
  • 19
  • 28
6
votes
3 answers

MQTT vs MQ design considerations

I don't have a specific query here ; just need some design guidelines. I came across this article on Node.js , MQTT and Websockets. I guess we can achieve similar purpose using Node/Java + ActiveMQ + Websockets. My query is how to select between MQ…
dev
  • 11,071
  • 22
  • 74
  • 122
5
votes
2 answers

How to pool the JMS connection in a standalone Java application?

We are working on an IBM WebSphere MQ application, and we use JMS API to operate the message. But we have a problem that the connection takes too much time, and we want to pool the JMS connection, for it's a standalone application, we have no…
phyerbarte
  • 199
  • 3
  • 12
5
votes
2 answers

How can I improve performance for an MQ based batch application?

I have an application where messages keep coming at a rate of 70K XMLs per hour. We consume these XML messages and store it into an intermediate queue. The intermediate queue is created because we need to meet SLA of consuming all the messages with…
SJoe
  • 319
  • 2
  • 6
  • 14
5
votes
2 answers

Delphi + Message Queue

Are there any free solutions to use Message Queueing with Delphi? I just know about Habari (which is not free) but could not find free solutions on the internet. About the votes to close my topic. I'm asking a question, if I need to explain here…
Rodrigo Farias Rezino
  • 2,687
  • 3
  • 33
  • 60
5
votes
3 answers

Synchronous messaging possible with JMS/WMQ?

Let's say there is a mobile application that needs to make a sync request/query for some data from a server. The request will come to hosted JMS client first, that will publish a message/request on external Queue (from partner). Now here where it…
user567068
  • 435
  • 8
  • 15
5
votes
1 answer

Websphere Message Queue Multithreaded

We are backend processor and doing programming with JMS MQ. We have 2 queues. one is used to get message and another one is used to send message. All the banking users will put messages to Q1 through their IB, MB etc. We receive messages from Q1 and…
user7467107
5
votes
1 answer

MQRC_Q_MGR_NOT_AVAILABLE while using managed client

Received signed certificate, installed in windows user cert. store with the public key from MQ, but getting MQRC_Q_MGR_NOT_AVAILABLE error?
Yuri
  • 2,820
  • 4
  • 28
  • 40
5
votes
1 answer

ActiveMQ broker redelivery vs consumer redelivery

I'm trying to understand the difference between ActiveMQ redeliveryPlugin and consumer's attempt to recieve messages before it marks it as a poison pill. What's the difference. In the documentation there'is an example:
St.Antario
  • 26,175
  • 41
  • 130
  • 318
5
votes
2 answers

How to find local transmission queue of remote MQ queue in Java?

in my Java application I get MQQueue object using MQQueue tQueue = qManager.accessQueue(tqName, tqOptions); The queue is a remote queue. Is there way to get corresponding local transmission queue ? (Using MQ 7.5) Thanks
5
votes
1 answer

JMS QueueConnectionFactory vs ConnectionFactory

My question is about the use of the following 2 factories: ConnectionFactory QueueConnectionFactory At the moment I just use a ConnectionFactory to initialize everything: Connection conn = factory.createConnection(user, pw); Session session =…
bvdb
  • 22,839
  • 10
  • 110
  • 123
1
2
3
42 43