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
klog.Infof("dropping event %q out of the queue: %v", event, err)
c.queue.Forget(event)
}
This approach has some problems:
The re-entered event may break correctness.
If max retries exceeded, the event get lost forever.
If rules are deleted by the user accidentally, there is no way to recover. (unless to restart the agent)
To improve this, we need a reconciliation mechanism to compare the current state of the node and the desired state (sync from the informer) periodically and make any required changes if they are mismatched.
The text was updated successfully, but these errors were encountered:
Currently, If failure happens while setting route table or IPsec connection, we will requeue the event and retry later.
raven/pkg/k8s/engine_controller.go
Lines 115 to 129 in a4ee18f
This approach has some problems:
To improve this, we need a reconciliation mechanism to compare the current state of the node and the desired state (sync from the informer) periodically and make any required changes if they are mismatched.
The text was updated successfully, but these errors were encountered: