search
HomeBackend DevelopmentPython TutorialIs it recommended to use multi-processing instead of multi-threading in Python? Share the reasons why it is recommended to use multi-process

Recently I’ve been reading about multi-threading in Python, and we often hear veterans say: “Multi-threading under Python is useless. , it is recommended to use multi-process!”, but why do you say this?​       
                                                                                                                                                                                                                                       So we have the following in-depth research: ​

##First of all, let’s emphasize the background:
1. What is GIL?
The full name of GIL is Global Interpreter Lock (global interpreter lock). The source is the consideration at the beginning of python design, for data security. decisions made.
2. Each CPU can only execute one thread at the same time
(In fact, multi-threading under a single-core CPU Both are just concurrency, not parallelism. From a macro perspective, concurrency and parallelism are both concepts of processing multiple requests at the same time, but there is a difference between concurrency and parallelism. Parallelism means that two or more events occur at the same time; concurrency means that two or more events occur at the same time. Two or more events occur within the same time interval.) Under Python multi-threading, the execution method of each thread: 1. Obtain GIL
2 , execute the code until sleep or the python virtual machine suspends it.
3. Release the GIL



##It can be seen that if a thread wants to execute, it must first get the GIL. We can think of the GIL as a "pass", and in a python process, there is only one GIL. Threads that cannot obtain a pass are not allowed to enter the CPU for execution.       
                                                                                                    
##In Python2.x , the release logic of GIL is that the current thread encounters an IO operation or the ticks count reaches 100 (ticks can be regarded as a counter of Python itself, specially used for GIL, and is reset to zero after each release. This count can be adjusted through sys.setcheckinterval ) to release.​
                                                                     Competing for locks and switching threads will consume resources. And because of the GIL lock, a process in Python can only execute one thread at the same time (the thread that has obtained the GIL can execute). This is why Python's multi-threading efficiency is not high on multi-core CPUs.                                                                                                Is multithreading completely useless?       
Here we have a classified discussion:                                                                                ​ etc.), in this case, due to the heavy calculation work, the ticks count will soon reach the threshold, and then trigger the release and re-competition of GIL (switching back and forth between multiple threads certainly consumes resources), so Multi-threading under python is not friendly to CPU-intensive code.

2. IO-intensive code (File processing, web crawlers, etc.), multi-threading can effectively improve efficiency (there will be IO waiting for IO operations under a single thread, causing unnecessary waste of time, and turning on multi-threading can automatically Switching to thread B will not waste CPU resources, thus improving program execution efficiency).
So python's multi-threading is more friendly to IO-intensive code.                                                                              , GIL does not use tick counting, but uses a timer (after the execution time reaches the threshold, the current thread releases the GIL), which is more friendly to CPU-intensive programs, but still does not solve the problem of the same time caused by GIL The problem is that only one thread can be executed, so the efficiency is still unsatisfactory.


Please note : Multi-core multi-threading is worse than single-core multi-threading. The reason is that under single-core multi-threading, every time the GIL is released, the thread that wakes up can obtain the GIL lock, so it can execute seamlessly. However, under multi-core, after CPU0 releases the GIL , the threads on other CPUs will compete, but the GIL may be obtained by CPU0 immediately, causing the awakened threads on several other CPUs to wait awake until the switching time and then enter the pending state. This will cause the threads to be Thrashing, resulting in lower efficiency##                                     #Back to the original question: We often hear veterans say:
"If you want to make full use of multi-core CPUs in Python, use multiple processes", what is the reason? Woolen cloth?​
##The reason is: each process has its own independent GIL , do not interfere with each other, so that they can be executed in parallel in a true sense, so in python, the execution efficiency of multi-process is better than that of multi-thread (only for multi-core CPU).                                                 So here is the conclusion: under multi-core, if you want to improve efficiency in parallel, a more common method is to use multi-process, which can effectively improve execution efficiency

[Related recommendations]

1. Examples of multi-process and multi-threading in Python (1)

2. Multi-process and multi-thread examples in Python (2) Programming methods

3. Is multi-process or multi-thread faster in Python?

4. Detailed introduction to Python processes, threads, and coroutines

5. Python concurrent programming thread pool/process pool

The above is the detailed content of Is it recommended to use multi-processing instead of multi-threading in Python? Share the reasons why it is recommended to use multi-process. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What data types can be stored in a Python array?What data types can be stored in a Python array?Apr 27, 2025 am 12:11 AM

Pythonlistscanstoreanydatatype,arraymodulearraysstoreonetype,andNumPyarraysarefornumericalcomputations.1)Listsareversatilebutlessmemory-efficient.2)Arraymodulearraysarememory-efficientforhomogeneousdata.3)NumPyarraysareoptimizedforperformanceinscient

What happens if you try to store a value of the wrong data type in a Python array?What happens if you try to store a value of the wrong data type in a Python array?Apr 27, 2025 am 12:10 AM

WhenyouattempttostoreavalueofthewrongdatatypeinaPythonarray,you'llencounteraTypeError.Thisisduetothearraymodule'sstricttypeenforcement,whichrequiresallelementstobeofthesametypeasspecifiedbythetypecode.Forperformancereasons,arraysaremoreefficientthanl

Which is part of the Python standard library: lists or arrays?Which is part of the Python standard library: lists or arrays?Apr 27, 2025 am 12:03 AM

Pythonlistsarepartofthestandardlibrary,whilearraysarenot.Listsarebuilt-in,versatile,andusedforstoringcollections,whereasarraysareprovidedbythearraymoduleandlesscommonlyusedduetolimitedfunctionality.

What should you check if the script executes with the wrong Python version?What should you check if the script executes with the wrong Python version?Apr 27, 2025 am 12:01 AM

ThescriptisrunningwiththewrongPythonversionduetoincorrectdefaultinterpretersettings.Tofixthis:1)CheckthedefaultPythonversionusingpython--versionorpython3--version.2)Usevirtualenvironmentsbycreatingonewithpython3.9-mvenvmyenv,activatingit,andverifying

What are some common operations that can be performed on Python arrays?What are some common operations that can be performed on Python arrays?Apr 26, 2025 am 12:22 AM

Pythonarrayssupportvariousoperations:1)Slicingextractssubsets,2)Appending/Extendingaddselements,3)Insertingplaceselementsatspecificpositions,4)Removingdeleteselements,5)Sorting/Reversingchangesorder,and6)Listcomprehensionscreatenewlistsbasedonexistin

In what types of applications are NumPy arrays commonly used?In what types of applications are NumPy arrays commonly used?Apr 26, 2025 am 12:13 AM

NumPyarraysareessentialforapplicationsrequiringefficientnumericalcomputationsanddatamanipulation.Theyarecrucialindatascience,machinelearning,physics,engineering,andfinanceduetotheirabilitytohandlelarge-scaledataefficiently.Forexample,infinancialanaly

When would you choose to use an array over a list in Python?When would you choose to use an array over a list in Python?Apr 26, 2025 am 12:12 AM

Useanarray.arrayoveralistinPythonwhendealingwithhomogeneousdata,performance-criticalcode,orinterfacingwithCcode.1)HomogeneousData:Arrayssavememorywithtypedelements.2)Performance-CriticalCode:Arraysofferbetterperformancefornumericaloperations.3)Interf

Are all list operations supported by arrays, and vice versa? Why or why not?Are all list operations supported by arrays, and vice versa? Why or why not?Apr 26, 2025 am 12:05 AM

No,notalllistoperationsaresupportedbyarrays,andviceversa.1)Arraysdonotsupportdynamicoperationslikeappendorinsertwithoutresizing,whichimpactsperformance.2)Listsdonotguaranteeconstanttimecomplexityfordirectaccesslikearraysdo.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function