For developers that use Trunk-based development, how have you approached dealing with an ever-growing collection of feature flags in your codebase?
My concern is if you are heavily leveraging feature flags for every release and every new feature, wouldn't the amount of feature flag code start to make the code less readable and possibly harder to maintain? For the sake of this question, assume feature flags are being handled by an external FFaaS.
Based on my own reasoning I can see a few options:
- Never delete feature flags. Keep them around in case you may need them (ie for sunsetting a feature you are phasing out at some later date).
- Periodically remove old feature flags that have remained on for X amount of time. This solves the code readability issue, but this breaks the trunk-based deploy paradigm as you lose out on the fallback measure of turning on/off a flag since the flag itself is being removed. You may also lose out on the above case where you'd have to manually track down functionality to phase out, or maybe re-introduce feature flags back in to facilitate some similar transition.
How have people handled the logistics around using this development system?