-
-
Notifications
You must be signed in to change notification settings - Fork 313
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
Sharing watch streams and caches between Controllers #1080
Comments
Just chiming it to say this looks really useful and addresses exactly some of the problems we're looking to solve in our own usage of KubeRS. The third option looks the best to me from the ones presented above. I'm playing around with a store factory at the moment with a pattern that could address some of the concerns, e.g. // very very rough example of the API I'm considering
fn example(pod_store_factory: StoreFactory<Pod>) {
let example_pod_store = pod_store_factory::all(ListParams::default().labels("example=test"));
} The aim is to keep declaration of selectors close to their point of ownership, but if another piece of code asks for the same store (e.g. same scope and list params) the factory will serve a clone of the first one created so that a 2nd stream isn't created. |
As an update to the people subscribed to this issue, this is now at a point where it should have a functional start under an unstable feature in 0.91: https://github.com/kube-rs/kube/releases/tag/0.91.0 |
Would you like to work on this feature?
maybe
What problem are you trying to solve?
Currently, our
Controller
machinery creates watch streams and a singlereflector
for the main watch stream only, and these streams/caches are fully managed and internal (except for the single reflector reader).This means there is no good way to share streams between other controllers (because the other controller would similarly set up its own watches). This means currently
kube_runtime
is best suited for smaller controllers and not larger controller manager style ones we see in go.I would like to let users configure the watch stream(s) themselves so the streams and caches can be shared between controller instances as a minimum, and try to do this with the least amount of ergonomic pain points in the existing Controller Api. It is currently possible to do this with the
applier
, but theapplier
is certified hard mode for most users.This has come up before in #824
Progress
WatchStreamExt::subscribe
#1131Controller
AddController::for_stream
+Controller::watches_stream
#1187 + AddController::owns_stream
#1173Controller
ShareableController
stream interfaces #1189 via Add shared stream interfaces #1449Controller
interfaces improvements - Improve shared streams interfaces #1472Store
for readiness #1226 via Track store readiness #1243NB: there was an early experiment for managing multiple
watcher
streams and caches in #1147, and parts of it has merged in #1131.Original Idea Sketches
Collapsible Set of Ideas
This issue aims to start the conversation with 3 ideas:
QueueStream
into a separate builder that can take arbitrary watchesController::watches
andController::owns
to take a watchstream rather than anApi
NB: A non-goal of this issue is solving the much harder problem of two controllers watching the same api with different
ListParams
(one might be less strict, so one watch could be a subset of another). This is very hard to do because theListParam
is intrinsic to the watch, and you can have totally orthogonalListParams
that watches only certain labels. It is potentially possible to analytically figure out the largest subset of a full watch, and then somehow filter events down the relevant events locally (using some kind of watcher interface), but that would be quite hard to do, so not going to talk about that at all here - feel free to write an issue for it!1. QueueStream Abstraction
A first (bad) idea I had; take the
QueueStream
builder and make it top-level to try to re-use it between controllers (pseudo-code):This feels very awkward. Internally it needs to know the params, and relations to apply to each api before it can be passed to the Controller, but the stream it needs to have exposed is the stream before it applies any mapping relations. It also needs two sets of constructors (one for streams and one for api-lp pairs).
2. StreamCache Abstraction
A possibly more direct translation of what we have in go? We make a literal map of streams that can be used in many controllers:
I'm not a huge fan of this because the the cache struct currently does not do much. It just stores the streams, but the user has to do all of the reflector mapping themselves.
Maybe it is possible here to do a
StreamCache::into_queuestream
and have that be accepted by aController
, but having difficulties envisioning this as the right path.3. Controller only takes streams, no cache struct (chosen)
If we are already changing the controller to take streams rather than api-lp pairs, we should possibly encourage direct ownership for now and just teach users to deal with the streams. We have already done so much work on
WatchStreamExt
anyway.This feels pretty natural, all ownership is managed in main, but it leaves a lot up to the user (in terms of gluing), so there is a lot of chances for the user to map the wrong listparams to the wrong type (with potentially hard to decipher errors if we don't introduce more telemetry), so it could be a somewhat painful journey.
I think this is ultimately the most sensible starting point though.
Maybe this can be done with some helper struct that can be fed into the
Controller
in some way that minimises potential user errors. Ideas welcome.Documentation, Adoption, Migration Strategy
Will write a guide for this on kube.rs once we have something.
Target crate for feature
kube-runtime
The text was updated successfully, but these errors were encountered: