Is it possible to canary deployments or staged rollouts for a service over the global network ?
I would to be able to do a partial rollout a specific version of a service and resume the rollout to the entire network based some metrics.
Is it possible to canary deployments or staged rollouts for a service over the global network ?
I would to be able to do a partial rollout a specific version of a service and resume the rollout to the entire network based some metrics.
Hey @arnaudm one option I’m familiar with for a blue/green style deploy strategy is:
Force Pass
setting. This will prevent any issues around accidental double-caching. Controlling cachingThen, to control traffic shifting, you’d change the load balancing Director’s weight settings.
There are different ways that we’ve seen this: some customers use an edge dictionary for managing traffic shifting for frequent (multiple times per day/hour) weight adjustments; some customers have client-slide logic to manage traffic shifts. But, this is a solid starting model for experimentation.