I am using qpid api(0.12). I have a MessageConsumer which connects to a qpid-broker and continously receives messages from a queue. But sometimes the receive method throws SessionException(stacktrace below)
org.apache.qpid.transport.SessionException: timed out waiting for sync: complete = 17, point = 22
at org.apache.qpid.transport.Session.sync(Session.java:765)
at org.apache.qpid.transport.Session.sync(Session.java:739)
at org.apache.qpid.client.BasicMessageConsumer_0_10.getMessageFromQueue(BasicMessageConsumer_0_10.java:423)
at org.apache.qpid.client.BasicMessageConsumer.receive(BasicMessageConsumer.java:407)
What does this exception mean and how should I handle it. Eating away the exception silently doesn't solve the problem. I assume this exception is thrown when the session tries to sync up with the broker, but if I sleep the thread for sometime and restart it consumer again, it works fine for a while, but soon the broker seems to become unresponsive. No further consumers are allowed to connect to the broker.
EDIT: Adding the code block where the exception gets thrown
MessageConsumer consumer = session.createConsumer(queue);
while(suspend==false){
Message msg = consumer.receive(1000);//exception gets thrown on this line
processMessage(msg);
}