forked from mateuszdyminski/gomr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.sh
executable file
·65 lines (61 loc) · 1.77 KB
/
dev.sh
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
#!/usr/bin/env bash
usage() {
cat <<EOF
Usage: $(basename $0) <command>
Wrappers around core binaries:
consul-run Runs the consul on the localhost.
consul-run-bg Runs the consul on the localhost in the background.
consul-install-linux Installs consul in data dir.
consul-install-mac Installs consul in data dir.
master-run Runs the master service.
worker-run Runs the worker service.
wordcount-run Runs Word Count example.
lotto-run Runs Lotto example.
EOF
exit 1
}
GO=${GOTIP:-$(which go)}
CMD="$1"
shift
case "$CMD" in
consul-run)
consul/consul agent -config-dir consul
;;
consul-run-bg)
nohup consul/consul agent -config-dir consul &
;;
consul-install-linux)
set -e
echo 'Downloading consul 0.7.1 for linux amd64'
wget https://releases.hashicorp.com/consul/0.7.1/consul_0.7.1_linux_amd64.zip
unzip -o consul_0.7.1_linux_amd64.zip -d /tmp
mv /tmp/consul consul/consul
rm consul_0.7.1_linux_amd64.zip
set +e
;;
consul-install-mac)
set -e
echo 'Downloading consul 0.7.1 for darwin amd64'
wget https://releases.hashicorp.com/consul/0.7.1/consul_0.7.1_darwin_amd64.zip
unzip -o consul_0.7.1_darwin_amd64.zip -d /tmp
mv /tmp/consul consul/consul
rm consul_0.7.1_darwin_amd64.zip
set +e
;;
master-run)
$GO run master.go -host=localhost -http-port=8200 -debug=false
;;
worker-run)
ID="$@"
$GO run wrk.go -id=$ID -host=localhost -rpc-port=810$ID -http-port=820$ID -debug=true
;;
wordcount-run)
cd examples/word_count; $GO run main.go --mrImplDir implementation wordCount.go --consulAddress localhost:8500
;;
lotto-run)
cd examples/lotto; $GO run main.go --mrImplDir implementation lotto.go --consulAddress localhost:8500
;;
*)
usage
;;
esac