Subscriber not listening all messages from EventHub
See original GitHub issueWe are trying to use Eventhub in our application as notification channel. Presently we are facing issue with subscribing the message, the subscriber picks 1 message out of 4 message.
Expected Behavior
To be subscribe all the messages from event hub
Current Behavior
Subscriber not receiving all messages which are send by Publisher
Snapshot Code for Reproduce
@Component
@EnableBinding(Sink.class)
public class HUDInvoiceEventListener {
@StreamListener(Sink.INPUT)
public void handleMessage(String message) throws Exception {
System.out.println(String.format("New message received: '%s'", message));
}
}
Sample Screenshot: We sent 15 request with message 1 to 15, but our subscriber receives only 4 out of 15.
Your Environment
- Version used: spring-cloud-azure-eventhubs-stream-binder
- Operating System and version (desktop or mobile): windows & linux (both platforms have it)
- SDK version: spring-cloud-azure-eventhubs-stream-binder 1.2.1
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (7 by maintainers)
Top Results From Across the Web
Why Azure event hub subscriber not working? - Stack Overflow
I am successfully able to publish the message with the same configuration. Publisher and Subscriber are running on the same machine. I have ......
Read more >Troubleshoot connectivity issues - Azure Event Hubs
There are various reasons for client applications not able to connect to an event hub. The connectivity issues that you experience may be ......
Read more >Azure Event Hubs Consumer Groups | Serverless Notes
In this article, you will understand about creating multiple consumer groups in Azure Event Hubs to support multiple subscribers.
Read more >Adventures with Dapr | Publishing & Subscribing events to ...
Since the subscriber service is not ready, listen to messages, connect to Azure Event Hub using the Azure Event Hub explorer extension, ...
Read more >Azure Event Grid vs Event Hub Comparison | Serverless360
Having multiple handlers or listeners in Event Hubs listening to the same partition is a bit tricky. If you straight away assign all...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@rodrigolopes Thanks for the info and we’ll look into it.
@rodrigolopes Do you have a sample project that I could reproduce the issue?