Description
I believe it's a bug that the watcher threadpool rejects operations at present.
Currently, we run a scheduler that works out what watches to execute and then submit tasks for watches that need to be executed to the watcher pool. Once the watcher pool's queue reaches a certain length it rejects work. This does not scale to large numbers of watches.
Once too many watches trigger at any point in time, those at the back of the queue seem to simply never get executed.
Shouldn't we instead just enqueue all watches that are triggered without bound on the watcher pool level and bound the number of things in flight by never scheduling execution for the same watch more than once (i.e. if there's already an execution queued for a watch just don't submit another one)?
This way we wouldn't needlessly break down at high watch counts just because of unfortunate timing across a large number of watches?