Jim Robbins
Jim Robbins
@anuchandy the problem we're having is that after receiving this warning message subsequent attempts to retrieve a message with a new ServiceBusReceiverClient will fail for several minutes and generate the...
@anuchandy the code is using a new ServiceClientBuilder every time: receiver = new ServiceBusClientBuilder() .connectionString(azureServiceBusConfig.azureBusConnectionString) .receiver() .disableAutoComplete() .topicName(azureServiceBusConfig.azureBusTopicName) .subscriptionName(azureServiceBusConfig.azureBusSubscriptionName) .buildClient(); IterableStream messages = receiver.receiveMessages(1, Duration.ofSeconds(5)); // Examine and act on...
I see three main differences: 1. The class that is instantiating the ServiceBusClientBuilder is in turn getting instantiated each time a polling transaction occurs. This happens because the polling is...
The two things missing from your sample are: - The time difference between each ServiceBusClientBuilder getting created - Because our code is coming from a new Camel route for each...
@Rawjyot is this something you can try?
@Rawjyot have you had a chance to try updating the code sample with the library to try and reproduce the problem?