search
HomeBackend DevelopmentGolangGoodbye Go interviewer: GMP model, why is there P?


Today’s protagonist is an extension question (question) of the all-purpose GMP model question in the Go interview, that is "GMP model, why is there P ? "

Further deliberation behind the question, in fact, the essence of this interview question is to ask: "GMP model, why can't G and M be directly bound? There is also an additional P. It's so troublesome, why is it, what problem is it trying to solve? "

In this article, Jianyu will take you to explore the reasons for the changes in GM and GMP models.

GM model

Before Go1.1, Go’s scheduling model was actually the GM model, that is, there was no P.

Today I will take you to review past designs.

Decrypting the Go1.0 source code

One of the ways we can understand something is to look at the source code, and look at Go1.0.1 with Jianyu The core key steps of the scheduler source code:

static void
schedule(G *gp)
{
 ...
 schedlock();
 if(gp != nil) {
  ...
  switch(gp->status){
  case Grunnable:
  case Gdead:
   // Shouldn't have been running!
   runtime·throw("bad gp->status in sched");
  case Grunning:
   gp->status = Grunnable;
   gput(gp);
   break;
  }

 gp = nextgandunlock();
 gp->readyonstop = 0;
 gp->status = Grunning;
 m->curg = gp;
 gp->m = m;
 ...
 runtime·gogo(&gp->sched, 0);
}

  • Call the schedlock method to obtain the global lock.
  • After successfully acquiring the global lock, change the current Goroutine state from Running (being scheduled) to Runnable (can be scheduled).
  • Call the gput method to save the current Goroutine running status and other information for subsequent use.
  • Call the nextgandunlock method to find the next runnable Goroutine and release the global lock for other schedulers to use.
  • After obtaining the next Goroutine to be run, change its running status to Running.
  • Call the runtime·gogo method to run the next Goroutine to be executed just obtained and enter the next round of scheduling.

Thinking about the GM model

By analyzing the scheduler source code of Go1.0.1, we can find a more interesting point. That is the scheduler itself (schedule method). Under normal processes, it will not return, that is, it will not end the main process.

Goodbye Go interviewer: GMP model, why is there P?
G-M model diagram

He will continuously run the scheduling process. After GoroutineA is completed, it will start looking for GoroutineB. When B is found, it will The completed scheduling right of A is handed over to B, allowing GoroutineB to start being scheduled, that is, running.

Of course, there are also Gs that are blocked (Blocked). Suppose G is making some system or network calls, which will cause G to stall. At this time, M (system thread) will be put back in the kernel queue, waiting for a new round of wake-up.

Disadvantages of the GM model

On the surface, the GM model seems to be indestructible and flawless. But why change it?

In 2012, Dmitry Vyukov published the article "Scalable Go Scheduler Design Doc", which is still the main target of major research articles on the Go scheduler. He described the overall reasons and considerations in the article. The following content refers to this article.

The current Goroutine scheduler (referring to the GM model of Go1.0) limits the scalability of concurrent programs written in Go, especially high-throughput servers and parallel computing programs.

The implementation has the following problems:

  • There is a single global mutex (Sched.Lock) and centralized state management:
    • mutex needs to protect all goroutine-related operations (creation, completion, reordering, etc.), resulting in serious lock competition.
  • Goroutine passing problem:
    • goroutine (G) handover (G.nextg): worker thread ( Runnable goroutines are frequently handed over between M's).
    • The above may result in increased latency and additional overhead. Every M must be able to execute any runnable G, especially the M that just created G.
  • Each M needs to do memory caching (M.mcache):
    • will lead to excessive resource consumption (Each mcache can absorb 2M of memory cache and other caches), data locality is poor.
  • Frequent thread blocking/unblocking:
    • In the presence of syscalls, threads are often blocked and unblocked block. This adds a lot of extra performance overhead.

GMP model

In order to solve the above many problems of the GM model, in Go1.1, Dmitry Vyukov worked on the GM model Based on this, a new P (Processor) component is added. And implemented the Work Stealing algorithm to solve some newly generated problems.

Goodbye Go interviewer: GMP model, why is there P?

GMP model, in the previous article "Go group friends asked: What is the appropriate number of Goroutines to control, will it affect GC and scheduling? has been explained in ".

# Friends who think it’s good can pay attention to it, I won’t repeat it here.

What changes will it bring

What changes will it bring after adding P? Let’s talk about it more explicitly.

  • Each P has its own local queue, which greatly reduces the direct dependence on the global queue. The result is a reduction in lock competition. The bulk of the performance overhead of the GM model is lock competition.

  • On the relative balance of each P, the Work Stealing algorithm is also implemented in the GMP model. If the local queue of P is empty, it will be removed from the global queue. Or steal the runnable G from the local queue of other P to run, reducing idling and improving resource utilization.

Why is there P

At this time, some friends may be confused. If you want To implement the local queue and Work Stealing algorithm, why not add it directly to M? M can still achieve similar functions. Why add another P component?

Combined with the positioning of M (system thread), if you do this, there are the following problems.

    Generally speaking, the number of M will be more than P. Like in Go, the maximum limit of the number of M is 10000, and the default number of P is the number of CPU cores. In addition, due to the properties of M, that is, if there is a system blocking call that blocks M and is not enough, M will continue to increase.
  • If M continues to increase, if the local queue is mounted on M, it means that the local queue will also increase accordingly. This is obviously unreasonable, because the management of local queues will become complicated and Work Stealing performance will be significantly reduced.
  • #After M is blocked by a system call, we hope to allocate its unexecuted tasks to others to continue running, rather than causing everything to stop as soon as it is blocked.
  • Therefore, it is unreasonable to use M. Then introducing a new component P and associating the local queue with P can solve this problem well.

SummaryToday’s article combines some historical situations, cause analysis and solution description of the entire Go language scheduler.

"GMP model, why is there P?" This question is like a system design understanding, because now many people will memorize the GMP model or go through it in an instant style in order to cope with the interview. And understanding the real reasons behind it is what we need to learn and understand.

Only by knowing what is happening and why is it happening can we break the situation.

The above is the detailed content of Goodbye Go interviewer: GMP model, why is there P?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Golang菜鸟. If there is any infringement, please contact admin@php.cn delete
如何利用PHP和GMP进行大整数的RSA加密和解密算法如何利用PHP和GMP进行大整数的RSA加密和解密算法Jul 28, 2023 pm 05:25 PM

如何利用PHP和GMP进行大整数的RSA加密和解密算法RSA加密算法是一种非对称加密算法,广泛应用于数据安全领域。它基于两个特别大的素数和一些简单的数学运算,实现了公钥加密和私钥解密的过程。在PHP语言中,可以通过GMP(GNUMultiplePrecision)库来实现大整数的计算,结合RSA算法实现加密和解密功能。本文将介绍如何利用PHP和GMP库来

再见 Go 面试官:GMP 模型,为什么要有 P?再见 Go 面试官:GMP 模型,为什么要有 P?Aug 08, 2023 pm 04:31 PM

”GMP 模型,为什么要有 P“ 这个问题就像是一道系统设计了解,因为现在很多人为了应对面试,会硬背 GMP 模型,或者是泡面式过了一遍。而理解其中真正背后的原因,才是我们要去学的要去理解。

php gmp 怎么编译安装php gmp 怎么编译安装Nov 08, 2022 am 09:35 AM

php gmp编译安装的方法:1、通过“bzip2 -d gcc-4.1.0.tar.bz2”解压php包;2、执行“tar -xvf gcc-4.1.0.tar”或“tar -xvf *.tar”命令;3、通过“make install”安装gmp即可。

如何使用PHP和GMP实现大数的快速乘法运算如何使用PHP和GMP实现大数的快速乘法运算Jul 31, 2023 pm 01:31 PM

如何使用PHP和GMP实现大数的快速乘法运算导言:在计算机科学中,整数运算是非常基础且常用的操作之一。然而,当涉及到大整数时,传统的运算方法会变得低效。本文将介绍如何使用PHP中的GMP(GNUMultiplePrecision)库来实现大数的快速乘法运算,并提供相应的代码示例。GMP库简介GMP库是一个高精度计算库,它提供了大整数的加减乘除、幂运算等功

如何使用PHP和GMP实现RSA加密和解密算法如何使用PHP和GMP实现RSA加密和解密算法Jul 28, 2023 pm 11:54 PM

如何使用PHP和GMP实现RSA加密和解密算法RSA加密算法是一种非对称加密算法,广泛应用于信息安全领域。在实际应用中,常常需要使用编程语言来实现RSA加密和解密算法。PHP是一种常用的服务器端脚本语言,而GMP(GNUMultiplePrecision)是一种高精度数学计算库,可以帮助我们进行RSA算法中需要的大数运算。本文将介绍如何使用PHP和GMP

如何使用PHP和GMP生成大质数如何使用PHP和GMP生成大质数Aug 01, 2023 pm 01:37 PM

如何使用PHP和GMP生成大质数引言:在密码学和安全领域中,随机生成大质数是非常重要的。PHP的GMP(GNUMultiplePrecision)扩展提供了高精度计算功能,我们可以利用它来生成需要的大质数。本文将介绍如何使用PHP和GMP生成大质数,并提供相应的代码示例。步骤一:安装GMP扩展首先,我们需要确保服务器上已安装并启用GMP扩展。可以通过以下

从头到尾:如何使用php扩展GMP进行大数运算从头到尾:如何使用php扩展GMP进行大数运算Aug 02, 2023 am 11:33 AM

从头到尾:如何使用PHP扩展GMP进行大数运算随着互联网的发展,大数据处理成为了我们日常开发中不可或缺的一部分。在很多场景下,我们需要对大于PHP的整数范围(-2^31-1到2^31-1)的数进行运算。在这种情况下,PHP的GMP扩展就可以派上用场了。GMP(GNUMultiplePrecisionArithmeticLibrary)是一个用

如何使用PHP和GMP实现大数的位移运算如何使用PHP和GMP实现大数的位移运算Aug 01, 2023 am 10:05 AM

如何使用PHP和GMP实现大数的位移运算摘要:在计算机科学中,位移运算是一种常见的操作,通过将一个数字的二进制表示向左或向右移动指定的位数,可以实现乘以2的幂次或除以2的幂次的效果。然而,当需要进行大数的位移运算时,常规的位移运算操作可能会导致溢出或损失精度。本文将介绍如何使用PHP语言和GMP库来实现大数的位移运算,并给出相应的代码示例。引言对于小数或常规

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

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.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.