A team is troubleshooting a slow response time on an App Engine standard environment application. The application uses Cloud SQL as its database. Which TWO actions should the team take to identify the bottleneck?
Trap 1: Increase the number of App Engine instances.
This may not address the root cause.
Trap 2: Enable Cloud CDN to cache responses.
Not suitable for dynamic content.
Trap 3: Disable caching to ensure fresh data.
Disabling caching worsens performance.
- A
Examine App Engine request logs for latency patterns.
Correlates with slow queries.
- B
Increase the number of App Engine instances.
Why wrong: This may not address the root cause.
- C
Enable Cloud SQL slow query logging and analyze long-running queries.
Identifies database-level latency.
- D
Enable Cloud CDN to cache responses.
Why wrong: Not suitable for dynamic content.
- E
Disable caching to ensure fresh data.
Why wrong: Disabling caching worsens performance.