Open
Description
When HTTP sink is set up with accumulateItems
and client is connected and then reconnected then 2 items are lost during reconnection.
Steps to reproduce:
- Start pipeline:
Pipeline p = Pipeline.create();
StreamSource<Long> source = HttpListenerSources.builder()
.type(Long.class)
.build();
Sink<Object> sink = HttpListenerSinks.builder()
.accumulateItems(500)
.buildServerSent();
p.readFrom(source)
.withoutTimestamps()
.writeTo(sink);
- Connect client for HTTP sink by
curl -X GET http://localhost:8081
- Send couple of messages by
curl POST
, all are processed correctly - Stop client for sink (from step 2)
- Send couple of messages by
curl POST
, all are processed correctly - Connect again client for HTTP sink by
curl -X GET http://localhost:8081
- Send couple of messages by
curl POST
, first two messages sent after client was disconnected (i.e. messages from step 5) are missing