在我的应用程序中,我正在使用活动mq,在用户端我正在运行两个实例(使用者)来处理请求。由于两个实例正在侦听同一队列,因此发生了一些冲突。如果同一个数据多次收到一个请求多次处理,为了克服这个问题并传达两个实例,我已经实现了hazelcast并且它运行良好,但有时候数据没有正确分配到两个实例中,如果我发送批量数据只有一个实例正在处理所有任务。
我在制作人那边使用的代码。
public synchronized static void createMQRequestForPoster(Long zoneId, List<String> postJobs, int priority) throws JMSException {
Connection connection = null;
try {
connection = factory.createConnection();
connection.start();
Session session = connection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
Queue queue = session.createQueue("customQueue");
MessageProducer producer = session.createProducer(queue);
producer.setDeliveryMode(DeliveryMode.PERSISTENT);
logger.info("List of jobs adding into poster queue: "+postJobs.size());
for(String str : postJobs) {
TextMessage message = session.createTextMessage();
JSONObject obj = new JSONObject();
obj.put("priority", priority);
obj.put("zoneId", zoneId);
obj.put("postJobs", str);
logger.debug(obj.toString());
message.setText(obj.toString());
message.setIntProperty(ActiveMQReqProcessor.REQ_TYPE, 0);
producer.send(message);
}
} catch (JMSException | JSONException e) {
logger.warn("Failed to add poster request to ActiveMq", e);
} finally {
if(connection != null)
connection.close();
}
}
我在消费者方面使用的代码。
private static void activeMQPostProcessor(){
ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(AppCoding.NZ_JMS_URL);
Connection connection = null;
try {
connection = connectionFactory.createConnection();
connection.start();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Queue queue = session.createQueue("customQueue");
MessageConsumer consumer = session.createConsumer(queue);
MessageListener listener = new MessageListener() {
@Override
public void onMessage(Message message) {
if (message instanceof TextMessage) {
try {
TextMessage textMessage = (TextMessage) message;
logger.info("Received message " + textMessage.getText());
JSONObject jsonObj = new JSONObject(textMessage.getText());
HazelcastClusterInstance.getInstance().add(processOnPoster(jsonObj));
message.acknowledge();
} catch (JSONException e) {
} catch (JMSException e) {
}
logger.info("Adding Raw Message to Internal Queue");
}
}
};
consumer.setMessageListener(listener);
logger.info("Waiting for new posts from selector, scheduler.");
} catch (JMSException e) {
logger.info(e);
}
}
我只是在观察这个案例。我该如何处理?
答案 0 :(得分:0)
您很可能看到预取消息的平衡不均衡。消费者连接并请求预取块,第一个倾向于在第二个进入之前获得大批量,因此它似乎占用了消息。
您需要为您的用例调整预取,请参阅prefetch documentation。