Enum MigrationStage
Stage denotes one of six possible stages a technology migration could be a part of, progressing through the following order.
Off DualWrite Shadow Live RampDown Complete
Namespace: LaunchDarkly.Sdk.Server.Migrations
Assembly: LaunchDarkly.ServerSdk.dll
Syntax
public enum MigrationStage
Fields
Name | Description |
---|---|
Complete | Complete - migration is done. |
DualWrite | DualWrite - write to both "old" and "new", "old" is authoritative for reads. |
Live | Live - both "new" and "old" versions run with a preference for "new". |
Off | Off - migration hasn't started, "old" is authoritative for reads and writes. |
RampDown | RampDown - only read from "new", write to "old" and "new". |
Shadow | Shadow - both "new" and "old" versions run with a preference for "old". |