Closed
Description
At present, reconcile.Reconciler
allows multiple concurrent reconciliations through adjustment of the MaxConcurrentReconciles
property to values above 1. However, this opens the possibility that there could be two concurrent reconciliations for the same resource, which is a situation we would like to avoid.
We would like to be able to configure the Reconciler
so that it supports concurrent reconciliations only for distinct resources. In other words, it would be possible to concurrently reconcile resources A and B, but not to have two concurrent reconciliations for either A or B.