runtime/pprof: NewCPUProfile + cpuProfile.Start to allow profile configuration #42502
Comments
runtime/pprof: method StartCPUProfile adds a parameter to allow custom cpu rate.
Change https://golang.org/cl/269437 mentions this issue: |
so we can add method |
I don't think that is the best name, but, yes, something along those lines could work. |
ok, let me think about it |
runtime/pprof: method StartCPUProfile adds a parameter to allow custom cpu rate.
runtime/pprof: method StartCPUProfile adds a parameter to allow custom cpu rate.
Change https://golang.org/cl/269537 mentions this issue: |
I turned this issue into a proposal for the API change. |
@ianlancetaylor Thanks for turning this into a proposal. The current proposal is specific to
|
@hyangah It sounds like you are suggesting some kind of
or even
? |
It sounds like maybe the interface in the previous message is the answer if we want to solve this problem. |
@rsc Choosing the right profiling rate is hard. There are many theories and different opinion around choosing the right value - http://www.brendangregg.com/blog/2014-06-22/perf-cpu-sample.html is talking about a lockstep sampling issue, #35057 is discussing scaling the frequency based on the system's capability because 100hz is sometimes too high, and @rogerlucena wants higher than 100hz (aside from whether 800 hz is reasonable or not). It looks to me it's a parameter people still want to experiment and tune. |
@rsc For my application it was crucial to set a sampling rate higher than 100 Hz to see something useful in the profiling output, as I explained and detailed in the Issue description above. Apart from that, in this description I also referenced other people for which customizing the sampling rate can still be useful: stack overflow and google groups discussion. |
OK, well then it sounds like the API in my earlier comment, which introduces the idea of a configurable-because-not-yet-running project, would be good for rate and maybe also leave open a way to handle things like other kinds of performance counters. Do I have that right? I will retitle this and see what people think. |
@rsc lgtm. |
Based on the discussion above, this seems like a likely accept. |
No change in consensus, so accepted. |
Originally posted by @cherrymui in #40094 (comment)
The pprof package indeed does not allow us to customize the CPU profiling rate at the moment. This was something critical for my application in google/badwolf#155, since the default profiling rate of 100 was extremely low and did not allow me no see anything in my CPU profile.
To work around this, I had to make a call to
runtime.SetCPUProfileRate(800)
(with a rate of around 800 hz to see something meaningful and helpful in my CPU profile) before callingpprof.StartCPUProfile
. Since there is a hard-coded call toruntime.SetCPUProfileRate(100)
inside thepprof.StartCPUProfile
, a warning is being printed to my terminal at the moment saying "runtime: cannot set cpu profile rate until previous profile has finished" as this call toruntime.SetCPUProfileRate(100)
failed (the booleancpuprof.on
was already set to true in the previous call toruntime.SetCPUProfileRate(800)
). This warning is annoying since it is misleading for someone who does not know the internals ofpprof.StartCPUProfile
, but the important here is that the CPU profiling is done with the first profiling rate that I manually set (800, as I wanted and as wanted from the user point of view).Given this, what I am trying to say is that the public/exported method
runtime.SetCPUProfileRate
is still useful, and sometimes even critical for allowing us to use wellpprof
and to see something relevant on our profiles, depending on the application. I am not alone on this as you can see here (stack overflow) and here (google groups discussion). Even one principal software engineer (L8) I have been working with at Google found it useful when reviewing my PR google/badwolf#155 above and copied the code to use it in one of his applications, on which setting a higher profiling rate was critical as well.That said, I believe we could, from now on, follow three different paths:
The ideal would be for the
pprof.StartCPUProfile
method already receive as argument the CPU profile rate we want, allowing us to customize it, with this argument having its default value set to 100 if it was not specified by the function call. This would be the ideal, if we had support for default arguments in Go. But, we can achieve something similar if we had a similar method with signaturepprof.StartCPUProfileWithSpecifiedRate(w io.Writer, hz int)
, in addition to thepprof.StartCPUProfile(w io.Writer)
method we already have. This way, theruntime.SetCPUProfileRate
method would not necessarily need to be an exported method anymore.We could keep
runtime.SetCPUProfileRate
public/exported, but we would have to fix the problem with the misleading warning message "runtime: cannot set cpu profile rate until previous profile has finished" if we had already manually set the profiling rate before the call topprof.StartCPUProfile
. For this we could:2.1. Have an auxiliar boolean method
runtime.isCPUProfileRateAlreadySet
, and call it insidepprof.StartCPUProfile
before the hard-coded call toruntime.SetCPUProfileRate(100)
there, trying to set the profiling rate to 100 only if this rate was not already previously set. This way, we would not see any strange warning after a call topprof.StartCPUProfile
if we had already previously set the profiling rate manually. I like this solution because it makes minimal changes on your code, it does not change any signature and it resolves exactly the problem we are trying to solve here, while keeping the warning message for other calls toruntime.SetCPUProfileRate
that were not frompprof.StartCPUProfile
in the situation above.2.2. Make
runtime.SetCPUProfileRate
return an error in the case the profiling rate was already previously set, allowing the caller to handle it and decide what to do from then on (insidepprof.StartCPUProfile
we could ignore this error for example). This would change the signature ofruntime.SetCPUProfileRate
.We could move the
SetCPUProfileRate
public signature to thepprof
package (with some changes as explained above to avoid the misleading warning message), and deprecate it / make it unexported inside theruntime
package.These were just some of the alternatives that I thought about for now. I would like to hear more from you on what you think about them and if you have any other suggestions for fixing what I explained above.
The text was updated successfully, but these errors were encountered: