Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime: make goid and goidgen 64 bits #4275

Closed
rsc opened this issue Oct 21, 2012 · 5 comments
Closed

runtime: make goid and goidgen 64 bits #4275

rsc opened this issue Oct 21, 2012 · 5 comments
Milestone

Comments

@rsc
Copy link
Contributor

rsc commented Oct 21, 2012

goidgen should be 64 bits to make wraparound impossible.
Assigning to Dmitriy because the race checker cares more than the runtime.
@dvyukov
Copy link
Member

dvyukov commented Oct 24, 2012

Comment 1:

Can we remove the goid entirely?
For the race detector I want to add an additional pointer to race detector context to
the G struct. Using goid's is inconvenient and slow. Currently there is a 10^6 limit on
total number of goroutines under the race detector, this is needed for fast direct
mapping between goid's and internal contexts, but I've seen a test that creates more
goroutines.
If we add the explicit race context pointer to G, then the race detector does not care
about goid's as well.
For the scheduler patch (https://golang.org/cl/6441097) I had to effectively
remove goid's. The single atomic increment on shared var can severe impact scalability.
This will limit the rate at which goroutines can be created (otherwise they can be
allocated from local cache, scheduled on local queue and then deallocated to local
cache).
I've started with using G pointer as identifier in crash dumps, and then switched to
"persistent" goid's. That is, an unique goid is assigned to G struct when it's first
allocated and then it's not updated when G is reused.
So I would prefer to:
1. Add explicit race context to G.
2. Switch to "persistent" goid's. They should not overflow.

@rsc
Copy link
Contributor Author

rsc commented Oct 24, 2012

Comment 2:

I want incrementing never-used-before goids for printing stack traces.
They don't have to be and probably shouldn't be used for anything else.
Russ

@dvyukov
Copy link
Member

dvyukov commented Oct 24, 2012

Comment 3:

What do you mean by "incrementing never-used-before goids"? Do you mean the same way
they work now? If so, it looks like a rather high price for printing stack traces.
When we have Processors, we can have unique ids by combining Processor id (16 bits) with
monotonically increasing per-Processor id (48 bits).

@ianlancetaylor
Copy link
Member

Comment 4:

The price for an incrementing never-before-used goid does not seem terribly high to be. 
It costs one atomic 64-bit increment for each new goroutine created.
Having a goid does not preclude having the G structure point to the race context.

@dvyukov
Copy link
Member

dvyukov commented Oct 26, 2012

Comment 5:

This issue was closed by revision 320df44.

Status changed to Fixed.

@rsc rsc added fixed labels Oct 26, 2012
@rsc rsc added this to the Go1.1 milestone Apr 14, 2015
@rsc rsc removed the go1.1 label Apr 14, 2015
@golang golang locked and limited conversation to collaborators Jun 24, 2016
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants