Skip to content

Two items are lost when HTTP sink client is reconnected #90

Open
@olukas

Description

@olukas

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:

  1. 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);
  1. Connect client for HTTP sink by curl -X GET http://localhost:8081
  2. Send couple of messages by curl POST, all are processed correctly
  3. Stop client for sink (from step 2)
  4. Send couple of messages by curl POST, all are processed correctly
  5. Connect again client for HTTP sink by curl -X GET http://localhost:8081
  6. Send couple of messages by curl POST, first two messages sent after client was disconnected (i.e. messages from step 5) are missing

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions