Bird
0
0

How can you combine dynamic configuration updates with feature flags to enable gradual rollout in microservices?

hard📝 Trade-off Q9 of 15
Microservices - Configuration and Secrets Management
How can you combine dynamic configuration updates with feature flags to enable gradual rollout in microservices?
AUpdate feature flag values dynamically and let services check flags at runtime
BHardcode feature flags and restart services on change
CUse static config files without dynamic updates
DDisable dynamic config updates during rollout
Step-by-Step Solution
Solution:
  1. Step 1: Understand feature flags and dynamic config

    Feature flags control features; dynamic config updates allow changing flags live.
  2. Step 2: Combine for gradual rollout

    Update flags dynamically so services enable features progressively without restarts.
  3. Final Answer:

    Update feature flag values dynamically and let services check flags at runtime -> Option A
  4. Quick Check:

    Dynamic flags enable smooth gradual rollout [OK]
Quick Trick: Dynamic flags let you toggle features live per rollout plan [OK]
Common Mistakes:
  • Hardcoding flags requiring restarts
  • Ignoring dynamic updates for rollout
  • Disabling updates during rollout

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Microservices Quizzes