-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
Description
Hello,
We're using ResourceEventHandler to get notified about changes for K8s resources, which can get changed frequently (EndpointSlices) and we're concerned if the underlying implementation is thread-safe. We're concerned what happens in the following cases:
- can multiple executions of
onAddmethod for example can happen simultaneously by different threads - execution of
onAdd,onUpdateoronDeletecan happen simultaneously by different threads (i.e. "add" and "update" events are to be processed and methods get do the methods the triggered one after another or in parallel)
We've consulted the docs, but there concerns about blocking are listed from which we can't answer our questions.
Best Regards,
Ivan Chuchuslki