What's the major differences between flagd vs go-feature-flag #740
-
There is a default implementation in Openfeature org so call |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
FlagD and GO Feature Flag are two open-source solutions designed to help developers experiment with feature flagging in a simple way. Both solutions share the common goal of providing a way to control feature flags and experiment with new features, with the aim of minimizing the risk of bugs and other issues. However, while they have a lot in common, there are also some differences between the two solutions. FlagD is a feature flagging solution specifically designed for use in Kubernetes. It is built to work seamlessly with Kubernetes and its associated technologies. Therefore, if you are using Kubernetes, FlagD may be a better fit for you as it has been created with this ecosystem in mind. GO Feature Flag, on the other hand, is a more versatile solution that can work with a wide range of configuration locations outside of Kubernetes, such as AWS S3, Google Cloud, GitHub, Gitlab, etc... It can also work with configmaps inside Kubernetes. Moreover, GO Feature Flag has more advanced rollout capabilities with the support of experimentation, progressive delivery, schedule changes, etc... This means that you can use GO Feature Flag to experiment with new features and roll them out to users gradually, helping to minimize the risk of bugs and other issues. In summary, FlagD is more focused on the Kubernetes ecosystem, while GO Feature Flag is a more versatile and feature-rich solution that can be used in a wider range of environments. @yangzhaox I hope it gives you the information you were looking for? |
Beta Was this translation helpful? Give feedback.
FlagD and GO Feature Flag are two open-source solutions designed to help developers experiment with feature flagging in a simple way. Both solutions share the common goal of providing a way to control feature flags and experiment with new features, with the aim of minimizing the risk of bugs and other issues. However, while they have a lot in common, there are also some differences between the two solutions.
The main difference between FlagD and GO Feature Flag is their ecosystem and versatility.
FlagD is a feature flagging solution specifically designed for use in Kubernetes. It is built to work seamlessly with Kubernetes and its associated technologies. Therefore, if you are using Kuber…