You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of Numaflow expects the data read from the (N-1)th vertex to be forwarded to the (N)th vertex as a batch. We need to make this asynchronous and out of order sending so that the slower processing items in the read batch will not hold up resources.
The main aim is to make sure we always have X elements being processed at anytime
Use Cases
This is quintessential for ML workloads or any other workload where we have varying distribution of processing latency (in other words, not a good gaussian distribution on processing latency)
CAVEATS
Watermark needs to be implemented via min-heap
Reduce will be tracked via a followup issue
The content you are editing has changed. Please copy your edits and refresh the page.
Summary
The current implementation of Numaflow expects the data read from the (N-1)th vertex to be forwarded to the (N)th vertex as a batch. We need to make this asynchronous and out of order sending so that the slower processing items in the read batch will not hold up resources.
The main aim is to make sure we always have X elements being processed at anytime
Use Cases
This is quintessential for ML workloads or any other workload where we have varying distribution of processing latency (in other words, not a good gaussian distribution on processing latency)
CAVEATS
Tasks
The text was updated successfully, but these errors were encountered: