Exam MCIA - Level 1 All QuestionsBrowse all questions from this exam
Question 12

An integration Mule application is deployed to a customer-hosted multi-node Mule 4 runtime cluster. The Mule application uses a Listener operation of a JMS connector to receive incoming messages from a JMS queue.

How are the messages consumed by the Mule application?

    Correct Answer: D

    Depending on the Listener operation configuration, either all messages are consumed by ONLY the primary cluster node or else EACH message is consumed by ANY ONE cluster node. This setup allows for flexible configuration to accommodate different load balancing and high availability requirements. The primary cluster node setting ensures that all messages are handled by a specific node, while other configurations allow for messages to be distributed among available nodes, optimizing resource usage and reliability.

Discussion
Pavan_NagineniOption: D

D. Depending on the Listener operation configuration, either all messages are consumed by ONLY the primary cluster node or else EACH message is consumed by ANY ONE cluster node

MulesoftOption: D

D is correct - https://dzone.com/articles/deep-dive-into-jms-integration-patterns-with-mules

GrumpOption: D

D. I think.

gilofernandesOption: D

In a customer-hosted multi-node runtime cluster, a JMS listener can be configured to decide where the messages are consumed: primary node only or all nodes. D is the correct answer

godricravenclawOption: D

This is the expected behaviour to achieve load balancing. Can be set to isPrimaryNode = true as well.

Viv2005Option: D

With listener-based connector (JMS, VM) traffic is distributed automatically or load balanced both in CloudHub and cluster. This means, even if primarynode=false the load distribution will be taken care of.

sanni27Option: D

should be D

majda091983Option: D

it is D

mamorOption: D

D is the answer

madgeezerOption: D

D. Depending on the Listener operation configuration, either all messages are consumed by ONLY the primary cluster node or else EACH message is consumed by ANY ONE cluster node

[Removed]Option: D

in connector configuration, we have the configuration name "make primary node" if we enable this then this worker is only responsible for processing all the messages to prevent duplicacy, if we didn't enable it then every worker is responsible to process the message Ans D

rodriguescontOption: D

D The configurations primaryNodeOnly, shared-subscriptions, and topics may affect if only primary node or the other nodes will process receiving messages.

razz123098Option: D

D is the answer

sanni27Option: D

D, because its queue not topic so all the nodes cant consume, only one listener can consume.