Ray
Ray

Reputation: 69

Why is my pipeline throwing a "fetchMessages request failed with invalid offset error"?

I am trying to write a streaming pipeline and received this error.

Here is my spec: -

--cpu-parallelism 8
--memory-parallelism 8

Please let me know if this makes sense.

Upvotes: 2

Views: 89

Answers (1)

Ken
Ken

Reputation: 41

There are two known scenarios for such behavior -

  • If the Pipeline was paused for longer than the retention period of one of the input streams OR
  • If the Pipeline is processing data slower than the input streams are receiving data. In such cases, at some point, the current data being processed by Pipeline will get dropped by the stream layer as it crosses the retention period threshold.

Upvotes: 2

Related Questions