Randeep Walia

Results 9 comments of Randeep Walia
trafficstars

This is a good question- I'd like to know more about this and transitioning consumers from LATEST to TRIM_HORIZON in general. I feel like this isn't documented very well on...

Here is the code in question from ResponseBodyEmitter: ``` private void sendInternal(Set items) throws IOException { if (items.isEmpty()) { return; } if (this.handler != null) { try { this.handler.send(items); }...

Hi, thank you for the reply and my apology for not being clear with these details at the outset. A common theme in our error logs is a Broken pipe...

Just to follow up, our `.onError` and `.onTimeout` handlers remove an SSE recipient from an internal collection we used to coordinate sending messages. Because of the nature of the memory...

I think I may have started this with a red herring. As part of the initial investigation I reported that: > As part of the error, it looks like the...

My apologies: I realized I never answered some specific questions asked. I am using `spring-webmvc 6.1.4` via `spring boot 3.2.3` Regarding the question about uncaught exceptions, there are several that...

I think the idea of a burst of messages being sent immediately is unlikely as the service runs for several days, heap size grows during that time, and it eventually...

We isolated the root cause. There may be some blame on both sides but... it's probably mostly on my side :0) The issue occurs because we create an `SSEEmitter`, store...

@rstoyanchev, I think your assessment is mostly correct. The controller method returns, but returns a json object instead of the SseEmitter. It makes sense that, if the SseEmitter is never...