
Answer-first summary for fast verification
Answer: Deploy the new version in the same application and use the --splits option to give a weight of 99 to the current version and a weight of 1 to the new version.
The correct answer is B. By using the App Engine's traffic splitting feature, you can direct a certain percentage of traffic to a specific version of your application. In this case, you want to send 1% of traffic to the new test version and keep the remaining 99% on the current version. This can be achieved by deploying the new version in the same application and using the --splits option to give a weight of 99 to the current version and a weight of 1 to the new version. Other options involve unnecessary complexity or are not feasible within a single project.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
Your website is currently hosted on the App Engine standard environment, and you are planning to roll out a new test version of this website. Your goal is to enable only 1% of your users to access this new test version while keeping the implementation process as simple as possible. What steps should you take to achieve this?
A
Deploy the new version in the same application and use the --migrate option.
B
Deploy the new version in the same application and use the --splits option to give a weight of 99 to the current version and a weight of 1 to the new version.
C
Create a new App Engine application in the same project. Deploy the new version in that application. Use the App Engine library to proxy 1% of the requests to the new version.
D
Create a new App Engine application in the same project. Deploy the new version in that application. Configure your network load balancer to send 1% of the traffic to that new application.