The containerd executor added in #1965 currently starts a containerd event stream for every task. These event streams contain events for all containers which containerd is managing. We should either:
- Make use of server side filtering in containerd (not yet implemented) to request a per-task stream which only contains events relevant to the task.
- Setup a singleton event stream on the client side which demuxes into multiple per task event streams.
My preference is to do the former.
The containerd executor added in #1965 currently starts a containerd event stream for every task. These event streams contain events for all containers which containerd is managing. We should either:
My preference is to do the former.