Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is a process the same as a Goroutine in Golang?

For the following code:

func main() {
    goRtns := runtime.NumGoroutine()
    fmt.Println("goroutines:", goRtns)
}

The output is 1. But this is within a "process," with no goroutines being explicitly called:

"In computing, a process is an instance of a computer program that is being executed. It contains the program code and its current activity. Depending on the operating system (OS), a process may be made up of multiple threads of execution that execute instructions concurrently."

Also from the excellent "How goroutines work" blog post by Krishna Sundarram: http://blog.nindalf.com/how-goroutines-work/

"The creation of a goroutine does not require much memory - only 2kB of stack space. They grow by allocating and freeing heap storage as required."

My question is this, then: the instance of code that is running (my simple main.go function) is counted as a goroutine by the runtime library. Am I to assume that the parent process is treated as a go routine, with the same rules of memory allocation, garbage collection, etc? Would it be wise to assume reading a fact about a goroutine's execution is analogous to the overarching go process that runs it? With respect to the second quote on goroutines above, this sounds like a process growing/shrinking its stack space as a program executes which is a standard paradigm in programming.

Do go processes and routines share the same rules? Or am I just missing something about the reported number of goroutines.

like image 581
abgordon Avatar asked Feb 11 '17 20:02

abgordon


People also ask

Is Goroutine a process?

Goroutine: A Goroutine is a function or method which executes independently and simultaneously in connection with any other Goroutines present in your program. Or in other words, every concurrently executing activity in Go language is known as a Goroutines.

Are Go routines threads or processes?

A goroutine is a lightweight thread managed by the Go runtime.

What is a Goroutine in Golang?

Golang provides goroutines to support concurrency in Go. A goroutine is a function that executes simultaneously with other goroutines in a program and are lightweight threads managed by Go. A goroutine takes about 2kB of stack space to initialize.

Is coroutine a Goroutine?

Some people can argue about such subtleties, but for most of it: goroutine is a coroutine.


1 Answers

Is a process the same as a Goroutine in Golang?

You are using the wrong term process here. In GO everything is a goroutine. as Volker said. and you can see gouroutine definition from here :

A goroutine is a lightweight thread managed by the Go runtime.

for example in your code

func main() {
    goRtns := runtime.NumGoroutine()
    fmt.Println("goroutines:", goRtns)
}

this has only one goroutine because it has only main function and inside there are no go calling here. it just print the something from given variable.

another example if you have go called in your function main :

func main() {

    result := sq(sq(sq(gen(1, 2, 3, 4))))

    numGoroutines := runtime.NumGoroutine()
    fmt.Println("number goroutine = ", numGoroutines)

    fmt.Println(<-result)
    fmt.Println(<-result)
    fmt.Println(<-result)
    fmt.Println(<-result)

}

you can find sq and gen function here. Now the runtime.NumGoroutine() will have 5 gorutine. Since inside function gen and sq we have go called and we combine theme here the total would be 4 + the main the final result is 5.

like image 153
Gujarat Santana Avatar answered Sep 22 '22 19:09

Gujarat Santana