
Google Professional Cloud DevOps Engineer
Get started today
Ultimate access to all questions.
As a DevOps Engineer, you're tasked with optimizing a service on Google App Engine's local development server to ensure it responds within 500 ms, especially during peak hours when latency increases. What strategy should you implement for performance optimization?
As a DevOps Engineer, you're tasked with optimizing a service on Google App Engine's local development server to ensure it responds within 500 ms, especially during peak hours when latency increases. What strategy should you implement for performance optimization?
Real Exam
Explanation:
Implementing a cache mechanism like Memcached or Redis is the correct approach. It directly reduces datastore reads, thereby lowering latency during peak hours. Automatic scaling is not an option for the local development server, manual scaling is inefficient due to the need for constant monitoring, and restarting the service via cron jobs does not address the root cause of latency issues.