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
In the dockerHandler.go code, the event processing for the communication EventChan := docker.geteVentChannel () is linear, so if there are a large number of Docker events, some events may be lost?
Is your feature request related to a problem? Please describe the use case.
Avoid event loss caused by delayed Docker event processing
Describe the solution you'd like
Adding a channel with a ratio of 256 to EventChan ensures that events fetched from the Dokcer daemon are fully processed
Describe alternatives you've considered
You could also consider getting a list of containers from Docker to handle the Dokcer event instead of passively receiving it. In the case of active fetching, we can control the code freely
The content you are editing has changed. Please copy your edits and refresh the page.
Feature Request
Short Description
In the dockerHandler.go code, the event processing for the communication EventChan := docker.geteVentChannel () is linear, so if there are a large number of Docker events, some events may be lost?
Is your feature request related to a problem? Please describe the use case.
Avoid event loss caused by delayed Docker event processing
Describe the solution you'd like
Adding a channel with a ratio of 256 to EventChan ensures that events fetched from the Dokcer daemon are fully processed
Describe alternatives you've considered
You could also consider getting a list of containers from Docker to handle the Dokcer event instead of passively receiving it. In the case of active fetching, we can control the code freely
Tasks
Tasks
The text was updated successfully, but these errors were encountered: