-
Notifications
You must be signed in to change notification settings - Fork 0
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
Adapter config cache miss #38
Comments
Come to think of it, I'm not sure we should spend too much time on this. In fact, the current architecture doesn't cater for reliable delivery of notifications anyway---think message queues. So we might actually fail to inject ID tokens into outbound Orion notifications occasionally for reasons that seem more likely to me:
and there's no easy way to recover from those in the current synchronous message passing setting. |
We have to see how this comes out.
But I can think of many situations where you have a one time subscription and then ONLY notifications for days/weeks/months. Maybe we should install a trigger to call the /version endpoint any 100ms... or so... then we only "lose" data for some time... but even there we might be able to stabilize a bit with resilience features, if not our own Mixer constructions hinder us there. But yes... notifications might fail. because they are only webhooks. |
Um, that shouldn't be a problem though since before a notification goes out some new data must come in---e.g. from an agent. The adapter would catch the HTTP request to update the entity and cache the current config as it gets it from the Mixer. Am I missing something here?
Yes, why not. It should be easy enough to do and would give us some peace of mind :-) |
We cache adapter Istio config to be able to request an ID token to add to HTTP requests originating from the mesh. This is a consequence of #25 which implemented a workaround to #24. However if there's a cache miss, we won't be able to add the ID token to the outbound HTTP request at hand.
Notice the Mixer passes the current config to the adapter on each mesh inbound HTTP call and the adapter caches it every time, replacing any old cached config with the most recent one. So a cache miss can only happen if
and no mesh inbound HTTP request gets intercepted before (3). My gut tells me this isn't very likely to happen in practice, especially for high-volume sites and also considering that client requests will typically hit the mesh before a mesh service tries to call an external service---e.g. a subscription/entity update has to happen before Orion sends out a notification. However no matter how likely, the issue is there, so we might fail to inject ID tokens into outbound Orion notifications occasionally.
We should look for an easy way to solve this, e.g. in principle we should be able request current configuration from Galley or the Mixer itself so that if there's a cache miss, we would have a fallback.
The text was updated successfully, but these errors were encountered: