forked from spektom/spark-flamegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spark-submit-flamegraph
executable file
·221 lines (189 loc) · 6.88 KB
/
spark-submit-flamegraph
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#!/bin/bash -eu
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Author: Michael Spector <[email protected]>
trap 'kill $(jobs -p) 2>/dev/null' EXIT
function find_unused_port() {
for port in $(seq $1 65000); do
if [ "$(uname)" == "Darwin" ]; then
nc -nz 127.0.0.1 $port >/dev/null 2>&1;
else
echo -ne "\035" | telnet 127.0.0.1 $port >/dev/null 2>&1;
fi
if [ $? -eq 1 ]; then
echo $port
exit
fi
done
echo "ERROR: Can't find unused port in range $1-65000"
exit 1
}
function install_deps() {
for cmd in python2.7 perl pip2.7; do
if ! which $cmd >/dev/null 2>&1; then
echo "ERROR: $cmd is not installed!"
exit 1
fi
done
echo -e "[$(date -Ins)] Installing dependencies"
[ ! -d $install_dir ] && mkdir $install_dir
pushd $install_dir >/dev/null
pip2.7 -q install --user influxdb blist pytz
wget -qc https://raw.githubusercontent.com/aviemzur/statsd-jvm-profiler/master/visualization/influxdb_dump.py
wget -qc https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegraph.pl
if [ "$(uname)" == "Darwin" ]; then
brew list influxdb &> /dev/null || brew install influxdb
else
wget -qc https://dl.influxdata.com/influxdb/releases/influxdb-1.2.4_linux_amd64.tar.gz
tar -xzf influxdb-1.2.4_linux_amd64.tar.gz
rm -f influxdb
ln -s influxdb-1.2.4-1 influxdb
export PATH=$install_dir/influxdb/usr/bin:$PATH
fi
wget -qc https://github.com/etsy/statsd-jvm-profiler/releases/download/2.1.0/statsd-jvm-profiler-2.1.0-jar-with-dependencies.jar
wget -qc https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/jarjar/jarjar-1.4.jar
if [ ! -f statsd-jvm-profiler-2.1.0-shaded.jar ]; then
echo -e "[$(date -Ins)] Shading possibly conflicing Java packages in statsd-jvm-profiler.jar"
cat << EOF >jarjar-rules.txt
rule com.timgroup.** com.timgroup.sparkflamegraph.@1
rule com.google.guava.** com.google.guava.sparkflamegraph.@1
rule org.influxdb.** org.influxdb.sparkflamegraph.@1
EOF
java -jar jarjar-1.4.jar process jarjar-rules.txt statsd-jvm-profiler-2.1.0-jar-with-dependencies.jar statsd-jvm-profiler-2.1.0-shaded.jar
fi
ln -sf statsd-jvm-profiler-2.1.0-shaded.jar statsd-jvm-profiler.jar
popd >/dev/null
}
function run_influxdb() {
echo -e "[$(date -Ins)] Starting InfluxDB"
cat << EOF >influxdb.conf
reporting-disabled = true
hostname = "${local_ip}"
bind-address = ":${influx_meta_port}"
[meta]
dir = "$(pwd)/influxdb/meta"
[data]
dir = "$(pwd)/influxdb/data"
wal-dir = "$(pwd)/influxdb/wal"
[admin]
enabled = false
[http]
bind-address = ":${influx_http_port}"
EOF
rm -rf influxdb
influxd -config influxdb.conf >influxdb.log 2>&1 &
wait_secs=5
while [ $wait_secs -gt 0 ]; do
if curl -sS -i $influx_uri/ping 2>/dev/null | grep X-Influxdb-Version >/dev/null; then
break
fi
sleep 1
wait_secs=$(($wait_secs-1))
done
if [ $wait_secs -eq 0 ]; then
echo "ERROR: Couldn't start InfluxDB!"
exit 1
fi
curl -fsS -X POST $influx_uri/query \
--data-urlencode "q=CREATE DATABASE profiler" >/dev/null
curl -fsS -X POST $influx_uri/query \
--data-urlencode "q=CREATE USER profiler WITH PASSWORD 'profiler' WITH ALL PRIVILEGES" >/dev/null
}
function run_spark_submit() {
spark_args=()
jars=$install_dir/statsd-jvm-profiler.jar
executor_java_opts="-javaagent:statsd-jvm-profiler.jar=server=${local_ip},\
port=${influx_http_port},reporter=InfluxDBReporter,database=profiler,\
username=profiler,password=profiler,prefix=sparkapp,tagMapping=spark"
driver_java_opts="-javaagent:${install_dir}/statsd-jvm-profiler.jar=server=${local_ip},\
port=${influx_http_port},reporter=InfluxDBReporter,database=profiler,username=profiler,\
password=profiler,prefix=sparkapp,tagMapping=spark"
while [[ $# > 0 ]]; do
case "$1" in
--jars)
jars="$jars,$2"
shift
;;
spark.executor.extraJavaOptions=*)
spark_args+=("$1 ${executor_java_opts}")
executor_java_opts_patched=true
;;
spark.driver.extraJavaOptions=*)
spark_args+=("$1 ${driver_java_opts}")
driver_java_opts_patched=true
;;
*)
spark_args+=("$1")
[[ "$1" == *.jar ]] && flamegraph_title="$1"
;;
esac
shift
done
spark_cmd=("${spark_cmd}")
spark_cmd+=(--jars)
spark_cmd+=("${jars}")
if [ -z ${executor_java_opts_patched+x} ]; then
spark_cmd+=(--conf)
spark_cmd+=("spark.executor.extraJavaOptions=-javaagent:statsd-jvm-profiler.jar\
=server=${local_ip},port=${influx_http_port},reporter=InfluxDBReporter,database=profiler,\
username=profiler,password=profiler,prefix=sparkapp,tagMapping=spark")
fi
if [ -z ${driver_java_opts_patched+x} ]; then
spark_cmd+=(--conf)
spark_cmd+=("spark.driver.extraJavaOptions=-javaagent:${install_dir}/statsd-jvm-profiler.jar\
=server=${local_ip},port=${influx_http_port},reporter=InfluxDBReporter,database=profiler,\
username=profiler,password=profiler,prefix=sparkapp,tagMapping=spark")
fi
if [ "${#spark_args[@]}" -gt 0 ]; then
spark_cmd+=("${spark_args[@]}")
fi
echo -e "[$(date -Ins)] Executing: ${spark_cmd[@]}"
"${spark_cmd[@]}" && :
spark_exit_code=$?
if [ $spark_exit_code -ne 0 ]; then
echo -e "[$(date -Ins)] Spark has exited with bad exit code ($spark_exit_code)"
fi
}
function generate_flamegraph() {
rm -rf stack_traces
echo -e "[$(date -Ins)] Collecting profiling metrics"
python2.7 $install_dir/influxdb_dump.py \
-o $local_ip -r $influx_http_port -u profiler \
-p profiler -d profiler -t spark -e sparkapp -x stack_traces >./dump.log 2>&1 && :
if [ $? -ne 0 ]; then
echo -e "[$(date -Ins)] No profiling metrics were recorded!"
return 0
fi
perl $install_dir/flamegraph.pl \
--title "$flamegraph_title" \
stack_traces/all_*.txt > flamegraph.svg
rm -rf stack_traces
echo -e "[$(date -Ins)] Created flamegraph: $(pwd)/flamegraph.svg"
}
if [ "$(uname)" == "Darwin" ]; then
local_ip=$(ifconfig | awk '/inet / && $2 != "127.0.0.1"{print $2; exit}')
else
local_ip=$(ip route get 1.1.1.1 | awk '{print $NF; exit}')
fi
install_dir=$HOME/.spark-flamegraph
influx_meta_port=$(find_unused_port 48080)
influx_http_port=$(find_unused_port $(($influx_meta_port+1)))
influx_uri=http://${local_ip}:${influx_http_port}
flamegraph_title="Spark Application"
spark_cmd=${SPARK_CMD:-"spark-submit"}
install_deps
run_influxdb
run_spark_submit "$@"
generate_flamegraph
exit $spark_exit_code