On this page
article
Interview Q&A #137
System Design interview question #7.
Category: System Design
Question
[System Design] Question #7: Explain Python’s GIL.?
Answer
The Global Interpreter Lock allows one thread to execute Python bytecode at a time. Use multiprocessing for CPU-bound parallelism.
Expand your answer with examples from your projects and link to Interview Prep.
Follow-Up Questions
- Can you explain a trade-off involved?
- How would you test this in production?
- What could go wrong at scale?