Anu Thomas
Anu Thomas
@Rawjyot, thanks for sharing the observation. We have already noticed via many git-issues that this log message with the "error" level is misleading users. The level of this log message...
I see; yes Jim, ServiceBusClientBuilder shares a few resources among the clients built from it. It is possible that after the closing of the first client but before the completion...
Hi @lordarcy, I tried to repro the behavior using the code below, where we can see "create-client, receive-message, and close-client" in a loop (10 times). ```java import java.time.Duration; import java.time.OffsetDateTime;...
Thanks, I'm trying to map your points back to code - so you have a concept known as "polling transaction." Each time the "polling transaction" executes, it "create-client instance, receive...
@lordarcy Sorry for the late follow-up, Is it possible for your team to update the code I shared so far to match the way you are using the library, so...
The prefetch configures the events to be fetched from the broker and buffered. The batchSize controls draining of this buffer. As the draining happens, the library communicates with the broker...
Related work_item - https://github.com/Azure/azure-sdk-for-java/issues/29992
Hello @lidkowiak, in all versions of SDK (including 7.15-*), the `sessionIdleTimeout` needs to be a value greater than the maximum processing time of a message. The javaDoc > After the...
@lidkowiak, how is your production run so far with the pattern we discussed above?
thanks for getting back. Right now, we don't have a plan to alter how `sessionIdleTimeout` works. At present, the `sessionIdleTimeout` has to match the maximum processing time if processor is...