Bird
0
0

Why does setting max concurrency to 1 in Cloud Run increase cold start frequency compared to higher concurrency?

hard📝 Conceptual Q10 of 15
GCP - Cloud Functions
Why does setting max concurrency to 1 in Cloud Run increase cold start frequency compared to higher concurrency?
ABecause network bandwidth is limited
BBecause CPU allocation is lower per instance
CBecause memory usage is higher per instance
DBecause fewer requests per instance cause more instances to start
Step-by-Step Solution
Solution:
  1. Step 1: Understand concurrency effect on instance usage

    Max concurrency 1 means each instance handles only one request at a time, so more instances are needed for many requests.
  2. Step 2: Link instance count to cold starts

    More instances starting means more cold starts as new containers spin up.
  3. Final Answer:

    Because fewer requests per instance cause more instances to start -> Option D
  4. Quick Check:

    Low concurrency increases instance count and cold starts [OK]
Quick Trick: Low concurrency means more instances, more cold starts [OK]
Common Mistakes:
  • Blaming CPU or memory for cold starts
  • Thinking network limits cause cold starts
  • Ignoring concurrency impact on instance count

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More GCP Quizzes