Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9951c27c
Commit
9951c27c
authored
Oct 19, 2020
by
Matthias Käppler
Committed by
Markus Koller
Oct 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for other stackprof profiles
parent
dd957088
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
29 deletions
+49
-29
changelogs/unreleased/mk-stackprof-object-support.yml
changelogs/unreleased/mk-stackprof-object-support.yml
+5
-0
config/initializers/stackprof.rb
config/initializers/stackprof.rb
+38
-27
doc/development/performance.md
doc/development/performance.md
+6
-2
No files found.
changelogs/unreleased/mk-stackprof-object-support.yml
0 → 100644
View file @
9951c27c
---
title
:
Support all stackprof profiling modes
merge_request
:
45277
author
:
type
:
changed
config/initializers/stackprof.rb
View file @
9951c27c
...
...
@@ -2,14 +2,18 @@
# trigger stackprof by sending a SIGUSR2 signal
#
# default settings:
# * collect raw samples
# * sample at 100hz (every 10k microseconds)
# * timeout profile after 30 seconds
# * write to $TMPDIR/stackprof.$PID.$RAND.profile
# Docs: https://docs.gitlab.com/ee/development/performance.html#production
module
Gitlab
class
StackProf
DEFAULT_FILE_PREFIX
=
Dir
.
tmpdir
DEFAULT_TIMEOUT_SEC
=
30
DEFAULT_MODE
=
:cpu
# Sample interval as a frequency in microseconds (~100hz); appropriate for CPU profiles
DEFAULT_INTERVAL_US
=
10_000
# Sample interval in event occurrences (n = every nth event); appropriate for allocation profiles
DEFAULT_INTERVAL_EVENTS
=
1_000
# this is a workaround for sidekiq, which defines its own SIGUSR2 handler.
# by defering to the sidekiq startup event, we get to set up our own
# handler late enough.
...
...
@@ -32,11 +36,7 @@ module Gitlab
end
def
self
.
on_worker_start
Gitlab
::
AppJsonLogger
.
info
(
event:
"stackprof"
,
message:
"listening on SIGUSR2 signal"
,
pid:
Process
.
pid
)
log_event
(
'listening for SIGUSR2 signal'
)
# create a pipe in order to propagate signal out of the signal handler
# see also: https://cr.yp.to/docs/selfpipe.html
...
...
@@ -55,43 +55,46 @@ module Gitlab
# a given interval (by default 30 seconds), avoiding unbounded memory
# growth from a profile that was started and never stopped.
t
=
Thread
.
new
do
timeout_s
=
ENV
[
'STACKPROF_TIMEOUT_S'
]
&
.
to_i
||
30
timeout_s
=
ENV
[
'STACKPROF_TIMEOUT_S'
]
&
.
to_i
||
DEFAULT_TIMEOUT_SEC
current_timeout_s
=
nil
loop
do
got_value
=
IO
.
select
([
read
],
nil
,
nil
,
current_timeout_s
)
read
.
getbyte
if
got_value
read
.
getbyte
if
IO
.
select
([
read
],
nil
,
nil
,
current_timeout_s
)
if
::
StackProf
.
running?
stackprof_file_prefix
=
ENV
[
'STACKPROF_FILE_PREFIX'
]
||
D
ir
.
tmpdir
stackprof_file_prefix
=
ENV
[
'STACKPROF_FILE_PREFIX'
]
||
D
EFAULT_FILE_PREFIX
stackprof_out_file
=
"
#{
stackprof_file_prefix
}
/stackprof.
#{
Process
.
pid
}
.
#{
SecureRandom
.
hex
(
6
)
}
.profile"
Gitlab
::
AppJsonLogger
.
info
(
event:
"stackprof"
,
message:
"stopping profile"
,
output_filename:
stackprof_out_file
,
pid:
Process
.
pid
,
timeout_s:
timeout_s
,
timed_out:
got_value
.
nil?
log_event
(
'stopping profile'
,
profile_filename:
stackprof_out_file
,
profile_timeout_s:
timeout_s
)
::
StackProf
.
stop
::
StackProf
.
results
(
stackprof_out_file
)
current_timeout_s
=
nil
else
Gitlab
::
AppJsonLogger
.
info
(
event:
"stackprof"
,
message:
"starting profile"
,
pid:
Process
.
pid
mode
=
ENV
[
'STACKPROF_MODE'
]
&
.
to_sym
||
DEFAULT_MODE
interval
=
ENV
[
'STACKPROF_INTERVAL'
]
&
.
to_i
interval
||=
(
mode
==
:object
?
DEFAULT_INTERVAL_EVENTS
:
DEFAULT_INTERVAL_US
)
log_event
(
'starting profile'
,
profile_mode:
mode
,
profile_interval:
interval
,
profile_timeout:
timeout_s
)
::
StackProf
.
start
(
mode:
:cpu
,
mode:
mode
,
raw:
Gitlab
::
Utils
.
to_boolean
(
ENV
[
'STACKPROF_RAW'
]
||
'true'
),
interval:
ENV
[
'STACKPROF_INTERVAL_US'
]
&
.
to_i
||
10_000
interval:
interval
)
current_timeout_s
=
timeout_s
end
end
rescue
=>
e
log_event
(
"stackprof failed:
#{
e
}
"
)
end
t
.
abort_on_exception
=
true
...
...
@@ -121,6 +124,14 @@ module Gitlab
write
.
write
(
'.'
)
end
end
def
self
.
log_event
(
event
,
labels
=
{})
Gitlab
::
AppJsonLogger
.
info
({
event:
'stackprof'
,
message:
event
,
pid:
Process
.
pid
}.
merge
(
labels
.
compact
))
end
end
end
...
...
doc/development/performance.md
View file @
9951c27c
...
...
@@ -247,8 +247,12 @@ The following configuration options can be configured:
-
`STACKPROF_ENABLED`
: Enables stackprof signal handler on SIGUSR2 signal.
Defaults to
`false`
.
-
`STACKPROF_INTERVAL_US`
: Sampling interval in microseconds. Defaults to
`10000`
μs (100hz).
-
`STACKPROF_MODE`
: See
[
sampling modes
](
https://github.com/tmm1/stackprof#sampling
)
.
Defaults to
`cpu`
.
-
`STACKPROF_INTERVAL`
: Sampling interval. Unit semantics depend on
`STACKPROF_MODE`
.
For
`object`
mode this is a per-event interval (every
`n`
th event will be sampled)
and defaults to
`1000`
.
For other modes such as
`cpu`
this is a frequency and defaults to
`10000`
μs (100hz).
-
`STACKPROF_FILE_PREFIX`
: File path prefix where profiles are stored. Defaults
to
`$TMPDIR`
(often corresponds to
`/tmp`
).
-
`STACKPROF_TIMEOUT_S`
: Profiling timeout in seconds. Profiling will
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment