-
Notifications
You must be signed in to change notification settings - Fork 209
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
Writable Declarative Store #2906
Comments
Thanks for raising this @piclemx this is more validation that folks want the UI and writes to the declarative backends. I guess it could be argued this is a duplicate of #2497 As you mentioned, the big challenges are around all those lovely ACID database problems when all you have is e.g. a file. Also, some of the declarative sources have some more favourable upstream mechanisms for handling concurrency control. In that issue, I propose some ideas around a new write API for Flipt. On top of this, I have prototyped this API for Git and toyed around with the idea of having all these changes go through a kind of staging flow. When a bunch of changes are ultimately "committed". Each users UI would be staging changes locally until commit. Commit is where a write to the upstream actually takes place. This could be the point where e.g. a file is written and pushed to object storage, or a branch in Git, or an OCI tarball and a reference moved. This would need new UI concepts to explain that you changes aren't live until commit and potentially a conflict resolution phase. This staging / commit process could also be incorporated with an approval flow. Just a bunch of thoughts to add on here in case they interest you. Do any of these ideas resonate with what you're imagining? If you're interested in some of the gritty details my WIP is here https://github.com/flipt-io/flipt/tree/gm/git-writes |
@GeorgeMac, I think I would go with another set of an API. Like a management API stuff. At the end, the UI would still be in read-only mode. You could split the file in multiple files. Like one per ns. At the end, I think Staging partI think you could do a minor change to flipt to use a different file or something. I'm not sure I want to put our git as the source of it. We did have bad behaviour using that approach in the past. |
@piclemx thanks for the feedback! Agreed that a new management API is desireable. If we are to create a new management API I would love it to be one that the rest of the Flipt backends could move towards for management of state, including the relational ones. And for it to be appropriate for the UI to consume. We've already fragmented in the way Flipt works quite a bit across the various backends. A lofty goal perhaps 😂 but the current sprawl of the ways in which Flipt works is already a bit of a maintenance challenge. So anything we can do to create some consistency is super valuable. On using a local file synced to object store, I think there a number of non-trivial challenges here. Then there is multi-user interaction and when to syncing state to S3. It might be that actually, not writing this to disk and just doing it to memory and syncing that to object could be favourable. Depending on our tolerance for failure, the writes to object store could either be in the API transactions or asynchrous. The latter obviously leaving room for lost writes. After saying all this though, perhaps just using the I think some concept of branching or staging becomes important for e.g. approval, which has been something folks have asked of late and other FF offerings provide. We need a way to represent some delta to be applied after some approval. This is something where a new managent API really brings value, and things like Git bring some nice sympathies, plus if we did it right, we could create an experience that seemlessly supports folks that want to GitOps and folks that just want a UI that has versioning and approvals and so on. That is my dream there at-least 😂.
I would love to learn more about what when wrong with Git there, if you have any details on that? Quick aside on Git: one thing I have wondered about is if we could get to a state where Git could even be embedded (like with sqlite), so you don't have to know about it, but you could if you wanted (e.g. the local or an upstream could be the source of truth). Then object store and OCI can become distribution targets. Where Flipt syncs the head of some target branch to e.g. S3 or OCI and so on for scaling the evaluation side of the equation and removing Git from the production scenario. |
I was more thinking something like that. Not saying that flipt locally should handle a fs. graph TD; Operator --> Management-API;
Management-API --> sqlite;
sqlite --> S3;
|
When you say Operator, are you thinking K8s operator / controller / CRD? One thing we could do r.e. k8s operator is simply drop the database / object store components all together and treat the CRD as the source of truth. Like how we have relation and declarative backends. K8s own API resources could be a backend in that case. |
Yes I was thinking about that. The only problem with it is the need to validate on the k8s side for something external |
Problem
Currently, we are using the mode of importing the a file (configmap k8s) into flipt. This mode would start to become a problem if we reach the limit of the size of a configmap.
Ideal Solution
We could leverage the declarative store, but in a case of an object storage (ex. minio, aws s3). The lift is on the integrators to validate their file and lock it before saving it to the object storage.
The idea solution would be that flipt can handle this.
Those endpoints should maybe have an different authorization to avoid anyone to use it.
I think, it should be interesting to have a way to bulk change features flag in 1 call
Search
Additional Context
No response
The text was updated successfully, but these errors were encountered: