
Explanation:
For App Engine, the correct feature to direct a small percentage of traffic (like 1%) to a new version is Traffic splitting by version. This is a built-in App Engine feature that allows you to split traffic between different versions of your application.
gcloud app services set-traffic command or the Cloud Consolegcloud app services set-traffic default --splits v2=0.01,v1=0.99This allows you to gradually roll out new versions to a small percentage of users for testing before making it available to everyone.
Ultimate access to all questions.
No comments yet.