A goroutine is a lightweight thread of execution that is fully managed by the Go language runtime.
1
vote
1answer
29 views
Why are goroutines with network i/o being blocked?
I'm using go 1.1 devel on Ubuntu 13.04
go version devel +ebe8bca920ad Wed May 15 15:34:47 2013 +1000 linux/386
According to http://golang.org/doc/faq#goroutines
When a coroutine blocks, such as ...
0
votes
2answers
49 views
Deadlock in go function channel
Why is there a deadlock even tho I just pass one and get one output from the channel?
package main
import "fmt"
import "math/cmplx"
func max(a []complex128, base int, ans chan float64, index chan ...
4
votes
1answer
70 views
Will the garbage collector collect Go routines that will never continue?
Consider the following code as a simplified example:
func printer(c <-chan int) {
for {
fmt.Print(<-c)
}
}
func provide() {
c := make(chan int)
go printer(c)
for ...
2
votes
2answers
55 views
Wait for the termination of n goroutines
I need to start a huge amount of goroutines and wait for their termination. The intuitive way seems to use a channel to wait till all of them are finished :
package main
type Object struct {
...
6
votes
2answers
108 views
Is blocking on a channel send a bad synchronization paradigm and why
Effective Go gives this example on how to emulate a semaphore with channels:
var sem = make(chan int, MaxOutstanding)
func handle(r *Request) {
<-sem
process(r)
sem <- 1
}
func ...
2
votes
2answers
123 views
Is launching goroutines inside of goroutines acceptable?
I'm learning Go right now using and one of my first projects is a simple ping script. Essentially I want to ping a bunch of urls, and on response of each one wait XXX number of seconds then ping ...
0
votes
2answers
134 views
Just how do goroutines work, and do they die when the main process finishes?
I scripted up a simple little example that inserts 10million records into a mongodb. I started out by making it work sequentially. Then I looked up how to do concurrency, and found goroutines. This ...
3
votes
1answer
113 views
Is there some elegant way to pause & resume any other goroutine in golang?
In my case, I have thousands of goroutines working simultaneously as work(). I also had a sync() goroutine. When sync starts, I need any other goroutine to pause for a while after sync job is done. ...
1
vote
1answer
92 views
goroutines causing major slowdowns and headaches
I'm having something of a problem with goroutines. Why is it that this code executes in ~125ms (note sequential execution):
package main
import (
"os/exec"
"time"
"fmt"
)
func main() {
cmd ...
0
votes
1answer
56 views
how to pass a MongoDB database to a GO routine?
I'm new to Go and I'm trying to write a simple program that iterates over all users in the MongoDB database and for each user iterates over all of his posts, using the 'mgo' package.
package main
...
5
votes
4answers
128 views
Do go channels preserve order when blocked?
I have a slice of channels that all receive the same message:
func broadcast(c <-chan string, chans []chan<- string) {
for msg := range c {
for _, ch := range chans {
ch ...
5
votes
2answers
117 views
Why is time.sleep required to run certain goroutines?
In the GO tutorial, we have this slide:
http://tour.golang.org/#62
package main
import (
"fmt"
"time"
)
func say(s string) {
for i := 0; i < 5; i++ {
time.Sleep(100 * ...
4
votes
2answers
206 views
Go lang global variables without goroutines overwriting
I'm writing a CMS in Go and have a session type (user id, page contents to render, etc). Ideally I'd like that type to be a global variable so I'm not having to propagate it through all the nested ...
0
votes
0answers
54 views
Adapt php parallel execution function for Windows?
Here is a function to execute an array of commands in parallel and return an array of results, optionally filtered by a callback function and a limit to the number of processes, it runs great on my ...
4
votes
1answer
117 views
Deadlock in Go, two routines splitting work
I'm a bit stuck on a deadlock issue in go.
This program takes an array of ints, a, and splits it into two. Then it takes these two parts in two different routines and sum up all elements. After this, ...
3
votes
1answer
143 views
Any better way to keep track of goroutine responses?
I'm trying to get my head around goroutines. I've created a simple program that performs the same search in parallel across multiple search engines. At the moment to keep track of the number of ...
7
votes
2answers
162 views
Is it safe for more than one goroutine to print to stdout?
I have multiple goroutines in my program, each of which makes calls to fmt.Println without any explicit synchronization. Is this safe (i.e., will each line appear separately without data corruption), ...
4
votes
2answers
120 views
Simple goroutine not working on Windows
I'm doing some tests with goroutines just to learn how they work, however it seems they are not running at all. I've done a very simple test:
package main
import (
"fmt"
)
func test() {
...
2
votes
2answers
208 views
Why do my goroutines wait for each other instead of finishing when done?
I'm pretty new to Go and there is one thing in my code which I don't understand.
I wrote a simple bubblesort algorithm (I know it's not really efficient ;)).
Now I want to start 3 GoRoutines. Each ...
0
votes
1answer
111 views
Parallelisation - Why does sleep pause only once?
Why do wait only the first goroutine with
func Sleep(d Duration)
http://golang.org/pkg/time
"Sleep pauses the current goroutine for the duration d."
but the rest is execute directly. I think cause ...
2
votes
2answers
192 views
Why is this Go code deadlocking?
package main
import "fmt"
import "runtime"
import "time"
func check(id int) {
fmt.Println("Checked", id)
<-time.After(time.Duration(id)*time.Millisecond)
fmt.Println("Woke up", id)
}
...
1
vote
2answers
791 views
golang: goroute with select doesn't stop unless I added a fmt.Print()
I tried gotour exercise #71 http://tour.golang.org/#71
If it is run like go run 71_hang.go ok, it works fine.
However, if you use go run 71_hang.go nogood, it will run forever.
The only difference is ...
5
votes
2answers
888 views
Why is this Go code blocking?
I wrote the following program:
package main
import (
"fmt"
)
func processevents(list chan func()) {
for {
//a := <-list
//a()
}
}
func test() {
...
0
votes
3answers
117 views
goroutines run out of memory UPD: go error handling
UPD: Turns out, it is a question about error handling in Go
I have written a simple web crawler, that generates the addresses of web-pages on the "main thread", fetches the actual pages in one ...
3
votes
2answers
168 views
Go: range receiving only odd number of values from channel
I am running this code in the sandbox in http://tour.golang.org/
I thought that once I launched the goroutine that ranges over the channel, all values I would send through would be printed.
package ...
11
votes
3answers
446 views
Python style generators in Go
I'm currently working through the Tour of Go, and I thought that goroutines have been used similarly to Python generators, particularly with Question 66. I thought 66 looked complex, so I rewrote it ...
7
votes
6answers
611 views
Equivalent of Goroutines in Clojure / Java
I recently enjoyed watching the Google IO talk on Go Concurrency patterns
Although the Go approach to concurrency (groutines, communication over channels) is clearly different to Clojure ...
0
votes
2answers
155 views
Strange behavior of go routine
I just tried the following code, but the result seems a little strange. It prints odd numbers first, and then even numbers. I'm really confused about it. I had hoped it outputs odd number and even ...
1
vote
1answer
276 views
Is there a better way to stop an infinite goroutine in Go?
I made a simple clock signal using goroutines:
func clockloop(ch chan byte) {
count := 0
for {
time.Sleep(FRAMELEN)
count++
innerfor:
for count {
...
0
votes
1answer
263 views
The behavior of goroutines with respect to blocking/non-blocking compared to a book example
EDIT: Updated at the bottom. I think I'm getting close to an understanding.
I'm reading Programming in Go and have come across this example which explains a technique of using goroutines. (I altered ...
2
votes
2answers
506 views
How to lock/synchronize access to a variable in Go during concurrent goroutines?
In his answer to this question: golang for Windows erratic behavior?
user @distributed recommended to lock/synchronize access to a shared variable on concurrent goroutines.
How can I do that?
More ...
5
votes
2answers
310 views
Printing to stdout causes blocked goroutine to run?
As a silly basic threading exercise, I've been trying to implement the sleeping barber problem in golang. With channels this should be quite easy, but I've run into a heisenbug. That is, when I try ...
3
votes
1answer
188 views
Go: goroutine channels - the value of send statement
When I tried to print out: fmt.Println(c <- x) right before the for loop in the code block below to see what "c <- x" would evaluate to, it got the error message:
./select.go:7: send statement ...
5
votes
3answers
681 views
How best do I keep a long running Go program, running?
I've a long running server written in Go. Main fires off several goroutines where the logic of the program executes. After that main does nothing useful. Once main exits, the program will quit. ...
1
vote
2answers
130 views
Synchronized channels?
Suppose I'm parsing some kind of input with the following three methods:
func parseHeader ([]byte) []byte
func parseBody ([]byte) []byte
func parseFooter ([]byte) []byte
They all parse a certain ...
2
votes
3answers
1k views
Max number of goroutines
How many goroutines can I use painless? For example wikipedia says, in Erlang 20 million processes can be created without degrading performance.
Update: I've just investigated in goroutines ...
0
votes
2answers
201 views
Issue with Mutual Execution of Concurrent Go Routines
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
do something
*Send int to Routine 2
Send int to Routine 3
Print Something
Print Something*
do ...
2
votes
1answer
154 views
Printing Issue with Concurrent Routines in Google's Go
I have three concurrent routines like this,
func Routine1() {
Print (value a, value b, value c)
Print (value a, value b, value c)
Print (value a, value b, value c)
}
func Routine2() {
Print (value ...
0
votes
1answer
245 views
Deadlock Error in Mutually Concurrent Go Routines
I have three concurrent go routines like below,
func Routine1() {
mutex1.Lock()
do something
mutex2.Lock()
mutex3.Lock()
send int to routine 2
send int to routine 3
* ...
1
vote
3answers
415 views
Mutual Exclusion of Concurrent Go Routine's
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
do something
*Send int to Routine 2
Send int to Routine 3
Print Something
Print Something*
do ...
0
votes
2answers
127 views
Concurrent Execution Issue in Google's Go Language
I have modified my this question in Mutual Exclusion of Concurrent Go Routine's – Arpssss
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
...
2
votes
6answers
230 views
Go Programming Language Mutual Concurrent Execution
I have two concurrent go routines like below,
Routine 1{
routine procedure
critical section{ ...
-1
votes
2answers
457 views
throw all goroutines are asleep - deadlock! ----— Error in Google's GO
I want to write three concurrent go routines that sends integers to each other. Now, my code is compiled properly, however after first execution it gives error "throw: all goroutines are asleep - ...
1
vote
2answers
1k views
All goroutines are asleep - deadlock! ----— Error
I want to write three concurrent go routines that sends integers to each other. Now, my code is compiled properly, however after first execution it gives error "all goroutines are asleep - deadlock!". ...
2
votes
1answer
457 views
Errors when many clients connect to Go server
full code could download at https://groups.google.com/forum/#!topic/golang-nuts/e1Ir__Dq_gE
Could anyone help me to improve this sample code to zero bug?
I think it will help us to develop a bug free ...
0
votes
2answers
613 views
What's wrong with the following go code that I receive 'all goroutines are asleep - deadlock!'
I'm trying to implement an Observer Pattern suggested here; Observer pattern in Go language
(the code listed above doesn't compile and is incomplete). Here, is a complete code that compiles but I get ...
15
votes
1answer
1k views
How can I emulate Go's channels with Haskell?
I recently started reading about the Go programming language and I found the channel variables a very appealing concept. Is it possible to emulate the same concept in Haskell? Maybe to have a data ...
4
votes
2answers
652 views
How can we use channels in Google Go in place of mutex?
Channels combine communication—the exchange of a value—with synchronization—guaranteeing that two calculations (goroutines) are in a known state.
How is it possible to use the channels in Google Go ...
2
votes
1answer
180 views
More idiomatic way of adding channel result to queue on completion
So, right now, I just pass a pointer to a Queue object (implementation doesn't really matter) and call queue.add(result) at the end of goroutines that should add things to the queue.
I need that same ...
1
vote
2answers
526 views
Go - Concurrent method
How to get a concurrent method?
type test struct {
foo uint8
bar uint8
}
func NewTest(arg1 string) (*test, os.Error) {...}
func (self *test) Get(str string) ([]byte, os.Error) {...}
I ...

