Feature Flag Vocabulary
Kill switch, gradual rollout, canary release, flag lifecycle vocabulary for controlled feature releases. Intermediate
0 / 5 completed
1 / 5
A senior engineer says: "The team uses a kill switch for the payment redesign feature."
What does "kill switch" mean in feature flag vocabulary?
A kill switch is a feature flag specifically designed for fast disablement — flipping it to "off" immediately stops the feature for all users without needing a deployment. This is different from a rollback, which reverts code.
| Term | Meaning |
|---|---|
| kill switch | Feature flag with a fast disable path — turns off a feature instantly without deployment |
| flag toggle | The act of switching a feature flag on or off |
| kill switch vs. rollback | Kill switch disables the feature; rollback reverts the entire code version |
| flag management service | Tools like LaunchDarkly, Unleash, or Flagsmith that manage flag state and targeting |