-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azure client message receiver not thread safe ? #690
Comments
Adding owner of the service bus library: @djrosanova |
Summary of discussion with Microsoft Azure support
In my case performance issue were due to "partitioning" feature. Details about partitioned entities : https://azure.microsoft.com/en-us/documentation/articles/service-bus-partitioning/
(That behavior is so strange for me: I have to wait a lock time for message that I have never heard about before.) I asked about "batch mode":
Answer:
From my point of view, this information is enough to close this issue. |
the service bus client library is not in this repo anymore, so if this is still an issue, it should go there: |
Hi all
When using azure java SDK ServiceBus client (version 0.9.3), sometime I receive no message when the queue (or topic) is not empty.
(I'm not 100% sure that this issue is the same as issue #644 so that's why I created this new issue).
I try to reproduce this behavior multiple times without success but I finally find a way to reproduce it by applying a parallel procedure.
I have created a dedicated project to reproduce the issue. feel free to clone, build, start and comment the following project : https://github.com/boly38/azurejavasdk-queue-test
This project main class demonstrates that sending and receiving messages on a azure bus queue works well in sequence but not in parallel.
Could you tell me if I'm wrong somewhere or else when do you plan to fix it ?
Maybe there is a more recent version than 0.9.3 but I am not able to find it on search.maven.org ?
The text was updated successfully, but these errors were encountered: