


Recently started to study Python's parallel development technology, including multi-threading, multi-process, coroutine, etc. I gradually sorted out some information on the Internet, and today I sorted out the information related to greenlet.
Technical background of concurrent processing
Parallel processing is currently receiving great attention, because in many cases, parallel computing can greatly improve system throughput, especially in the current era of multi-core and multi-processors. Therefore, ancient languages like lisp have been picked up again, and functional programming has become more and more popular. Introducing a library for parallel processing in python: greenlet. Python has a very famous library called stackless, which is used for concurrent processing. It mainly uses a micro-thread called tasklet. The biggest difference between greenlet and stackless is that it is very lightweight? Not enough. The biggest difference is that greenlet requires you to handle thread switching yourself. That is to say, you need to specify which greenlet to execute now and which greenlet to execute again.
Implementation mechanism of greenlet
In the past, python was used to develop web programs, and the fastcgi mode was always used. Then multiple threads were started in each process for request processing. One problem here is that it needs Ensure that the response time of each request is very short, otherwise the server will refuse service as long as a few more slow requests are made, because no thread can respond to the request. Usually, our services will be tested for performance when they go online, so under normal circumstances, there is not much Big problem. But it is impossible to test all scenarios. Once it occurs, the user will wait for a long time without responding. Some parts are unavailable, which leads to all unavailability. Later, it was converted to coroutine, greenlet under python. So I made an implementation mechanism of it. Simple understanding.
Each greenlet is just a python object (PyGreenlet) in the heap. So it is no problem for you to create millions or even tens of millions of greenlets for a process.
typedef struct _greenlet { PyObject_HEAD char* stack_start; char* stack_stop; char* stack_copy; intptr_t stack_saved; struct _greenlet* stack_prev; struct _greenlet* parent; PyObject* run_info; struct _frame* top_frame; int recursion_depth; PyObject* weakreflist; PyObject* exc_type; PyObject* exc_value; PyObject* exc_traceback; PyObject* dict; } PyGreenlet;
Every A greenlet is actually a function, and the context that saves the execution of this function. For a function, the context is its stack. All greenlets in the same process share a common user stack allocated by the operating system. So at the same time, only Greenlets with stack data that do not conflict use this global stack. Greenlets save the bottom and top of their stacks through stack_stop and stack_start. If the stack_stop of the greenlet to be executed overlaps with the greenlet currently in the stack, The stack data of these overlapping greenlets should be temporarily saved to the heap. The saved location is recorded through stack_copy and stack_saved, so that the stack_stop and stack_start locations in the stack can be copied from the heap back to the stack during recovery. Otherwise, the stack data will appear. will be destroyed. Therefore, these greenlets created by the application achieve concurrency by continuously copying data to the heap or from the heap to the stack. It is really comfortable to use coroutine for IO-type applications.
The following is a simple stack space model of greenlet (from greenlet.c)
A PyGreenlet is a range of C stack addresses that must be saved and restored in such a way that the full range of the stack contains valid data when we switch to it. Stack layout for a greenlet: | ^^^ | | older data | | | stack_stop . |_______________| . | | . | greenlet data | . | in stack | . * |_______________| . . _____________ stack_copy + stack_saved . | | | | . | data | |greenlet data| . | unrelated | | saved | . | to | | in heap | stack_start . | this | . . |_____________| stack_copy | greenlet | | | | newer data | | vvv |
The following is a simple greenlet code.
from greenlet import greenlet def test1(): print 12 gr2.switch() print 34 def test2(): print 56 gr1.switch() print 78 gr1 = greenlet(test1) gr2 = greenlet(test2) gr1.switch()
The coroutine currently discussed is generally It is supported by programming languages. At present, the languages that I know that provide coroutine support include python, lua, go, erlang, scala and rust. The difference between coroutines and threads is that coroutines are not switched by the operating system, but by programmer coding. In other words, the switching is controlled by the programmer, so there is no so-called thread. Security Question.
All coroutines share the context of the entire process, so the exchange between coroutines is also very convenient.
Compared with the second solution (I/O multiplexing), programs written using coroutines will be more intuitive, rather than splitting a complete process into multiple managed event handlers. . The disadvantage of coroutines may be that they cannot take advantage of multi-core, but this can be solved by coroutines + processes.
Coroutines can be used to handle concurrency to improve performance, and can also be used to implement state machines to simplify programming. I use the second one more. I came into contact with python at the end of last year and learned about the coroutine concept of python. Later, I came into contact with yield processing through pycon china2011. Greenlet is also a coroutine solution, and in my opinion it is a more usable solution, especially for processing state machines.
At present, this part has been basically completed. I will take the time to summarize it later.
To summarize:
1) Multiple processes can take advantage of multi-core, but inter-process communication is troublesome. In addition, an increase in the number of processes will cause performance degradation and the cost of process switching is higher. Program flow complexity is lower than I/O multiplexing.
2) I/O multiplexing processes multiple logical processes within a process without process switching. The performance is high, and information sharing between processes is simple. However, the advantages of multi-core cannot be used. In addition, the program flow is cut into small pieces by event processing, making the program more complex and difficult to understand.
3) Threads run within a process and are scheduled by the operating system. The switching cost is low. In addition, they share the virtual address space of the process, and it is simple to share information between threads. However, thread safety issues lead to a steep learning curve for threads and are error-prone.
4) Coroutines are provided by programming languages and are switched under the control of programmers, so there are no thread safety issues and can be used to handle state machines, concurrent requests, etc. But cannot take advantage of multi-core.
The above four solutions can be used together. I am more optimistic about the process + coroutine model
The above is the detailed content of Introduction to the use of Python greenlet and analysis of its implementation principles. For more information, please follow other related articles on the PHP Chinese website!

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.

The article discusses the role of virtual environments in Python, focusing on managing project dependencies and avoiding conflicts. It details their creation, activation, and benefits in improving project management and reducing dependency issues.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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),

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.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

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.
