Bird
0
0

Which is the correct way to specify max concurrency of 10 in a Cloud Run service YAML configuration?

easy📝 Syntax Q3 of 15
GCP - Cloud Functions
Which is the correct way to specify max concurrency of 10 in a Cloud Run service YAML configuration?
AmaxConcurrency: 10
Bmax_concurrency: 10
CcontainerConcurrency: 10
DconcurrentRequests: 10
Step-by-Step Solution
Solution:
  1. Step 1: Recall Cloud Run YAML concurrency field

    The correct field name to set concurrency is 'containerConcurrency'.
  2. Step 2: Verify other options are invalid

    Fields like maxConcurrency, max_concurrency, or concurrentRequests are not recognized by Cloud Run.
  3. Final Answer:

    containerConcurrency: 10 -> Option C
  4. Quick Check:

    Field name is 'containerConcurrency' [OK]
Quick Trick: Use 'containerConcurrency' field exactly in YAML [OK]
Common Mistakes:
  • Using camelCase or snake_case incorrectly
  • Adding prefixes like max or concurrent
  • Confusing with other service fields

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More GCP Quizzes