-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VCL not updated on specific circumstances #138
Comments
Thanks for the report and the detailed analysis -- and apologies that this issue has been laying around for a while. I concur that the VCL file not updating silently without any feedback is most undesirable. Even if one were able to "fine-tun[e] varnish itself, so that the child 'never dies'" (ironically, I'm not that familiar with Varnish to know how I'd even do that 😕), we should still account for the possibility of random failures when loading the VCL into Varnish, and either add some retry logic or have the controller bail out entirely and enforcing a Pod restart. I can also attempt to build a quick fix for this, but cannot make any promises as to when. In the mean time, PRs are of course welcome. 🙂 |
hi, thanks for reply, I still have this on "radar", but I also did not have time to fix the problem yet. But I will probably fix it one day (and in this case I'll open a PR). |
Hello, To reproduce: Workaround: |
Same here, in my case with 150 pods it's too slow as well. I did the workaround meanwhile. |
Describe the bug
Already a longer time, I had a suspicion, that sometimes the VCL in the cluster is not updated.
Now I could reproduce (or better say: spot and document occurence).
It seems to be as following:
Attachment screenshots.
To Reproduce
Unfortunately, I can't reproduce, as it happens semi randomly. Probably it could be reproduced by applying some stress to the varnish so the "varnish child is terminated/dies during VCL update".
Expected behavior
VCL is updated (or at least retried few times on fail)
Environment:
Configuration
-varnish-vcl-template=/etc/varnish/tmpl/frontend-tmpl.vcl
# mapped from config map-varnish-vcl-template-poll=true
Additional context
I did further analysis. In my case, it seems the following happens:
Preliminary fix idea:
errors <- v.rebuildConfig(ctx)
v.rebuildConfigWithRetry(ctx, errors)
v.rebuildConfig(ctx)
and retry the rebuild after errorIf I find some time, I can try to implement the fix, but unsure when.
Example of error situation:
The line which begins with "W" is from kube-httpcache, rest without prefix come from the varnish process itself.
Note that we run the pods with increased log level
-v=7
Note that in our case probably the problem could be mitigated by fine-tuning varnish itself, so that the child "never dies". And it could be questionable if it is a bug or feature (as the error is already logged as warning). But I think some kind of retry logic would be useful to make the VCL update more resilient in the cases where varnish VCL update fails, but the failure is transient and would succeed on retry. Because even if it happens on quite rare occasions, the result is part of the cluster running with old config, which could be very dangerous.
The text was updated successfully, but these errors were encountered: