forked from basho/riak-client-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-riak
executable file
·553 lines (462 loc) · 13.4 KB
/
setup-riak
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
#!/usr/bin/env bash
set -o errexit
set -o nounset
# NB: must happen before get_scriptpath
unset CDPATH
# NB: can't put this in common.bash since finding
# common.bash depends on it
# http://www.ostricher.com/2014/10/the-right-way-to-get-the-directory-of-a-bash-script/
function get_scriptpath
{
local sdir='unset'
local target='unset'
local bsrc="${BASH_SOURCE[0]}"
while [[ -h $bsrc ]]
do
target="$(readlink $bsrc)"
if [[ $target == /* ]]
then
bsrc="$target"
else
sdir="$(dirname $bsrc)"
bsrc="$sdir/$target"
fi
done
echo "$(cd -P $(dirname $bsrc) && pwd)"
}
declare -r script_path="$(get_scriptpath)"
source "$script_path/lib/common.bash"
source "$script_path/lib/gen_adv_conf.bash"
source "$script_path/lib/gen_riak_conf.bash"
source "$script_path/lib/legacy_search_conf.bash"
source "$script_path/lib/riak_cluster_config.bash"
source "$script_path/lib/strong_consistency_conf.bash"
# Defaults
declare -i i=0
declare riak_admin='riak-admin' # NB: will be set below
declare -r default_cluster_path="$HOME/basho/riak/rel"
declare -ir default_pb_port=8087
declare -ir default_http_port=8098
declare -r bucket_type_file_path="$script_path/bucket-types"
set +o nounset
if [[ -n $RIAK_CONF ]]
then
declare -r default_riak_conf="$RIAK_CONF"
else
declare -r default_riak_conf='/etc/riak/riak.conf'
fi
set -o nounset
# Option vars
opt_cleanup_only='false'
declare -i opt_delay_riak_ops=0
opt_ports=''
opt_riak_conf=''
opt_search='on' # NB: yz search on / off
opt_strong_consistency='false'
opt_setup_only='false'
opt_use_security='false'
function pinfo_options
{
if [[ $opt_strong_consistency == 'true' ]]
then
pinfo 'Setting up cluster with Strong Consistency'
fi
if [[ $opt_search == 'off' ]]
then
pinfo 'Setting up cluster WITHOUT Yokozuna Search'
fi
}
function commit_cluster
{
local -r riak_admin="$1"
$riak_admin cluster plan
$riak_admin cluster commit
$riak_admin transfer-limit 16
wait_for_transfers
}
function wait_for_service
{
local svc="$1"
local svc_out="$($riak_admin services 2>&1)"
local -i i=0
while [[ $svc_out != *$svc* ]]
do
if [[ $svc_out == *not\ responding* ]]
then
perr 'Riak did not start! (not responding)'
return 1
fi
sleep 5
if (( i > 24 ))
then
perr 'Riak did not start in time!'
return 1
else
pinfo "($i) waiting for service: $svc"
(( i = i + 1 ))
fi
svc_out="$($riak_admin services 2>&1)"
done
return 0
}
function wait_for_services
{
local node_name="$1"
local riak="$2"
local riak_admin="$3"
local opt_search="$4"
pinfo "Waiting for Riak services to start on $node_name"
maybe_sleep
for svc in 'riak_kv' 'riak_pipe'
do
if ! wait_for_service "$svc"
then
return 1
fi
done
if [[ $opt_search == 'on' ]]
then
if ! wait_for_service 'yokozuna'
then
return 1
fi
fi
}
function setup_cluster
{
pushd $cluster_path > /dev/null
get_node_count
pinfo "Setting up cluster in $cluster_path"
pinfo_options
pinfo 'Stopping Riak'
set +o errexit
for dir in $riak_dir_glob
do
pinfo "Stopping $dir"
$dir/bin/riak stop > /dev/null &
done
wait
pinfo 'Removing old Riak data'
for datadir in $riak_dir_glob/data/*
do
find $datadir -type f -delete
done
for logdir in $riak_dir_glob/log
do
find $logdir -type f -delete
done
for yz_temp in $riak_dir_glob/data/yz_temp
do
rm -rf $yz_temp
done
set -o errexit
if [[ $opt_cleanup_only == 'true' ]]
then
exit 0
fi
# NB: not readonly since vals are incremented
local -i pb_port="${opt_pb_port:-$default_pb_port}"
local -i http_port="${opt_http_port:-$default_http_port}"
local -ir starting_http_port="$http_port"
if [[ $opt_use_security == 'true' ]]
then
local -i https_port="$((http_port + 400))"
else
local -i https_port=0
fi
local adv_conf=''
local riak_conf=''
local riak_conf_orig=''
for dir in $riak_dir_glob
do
adv_conf="$dir/etc/advanced.config"
riak_conf="$dir/etc/riak.conf"
riak_conf_orig="$dir/etc/riak.conf.orig"
pinfo "Configuring $riak_conf"
if [[ -f $riak_conf_orig ]]
then
cp -f "$riak_conf_orig" "$riak_conf"
else
cp -f "$riak_conf" "$riak_conf_orig"
fi
gen_riak_conf "$riak_conf" $http_port $pb_port $https_port \
"$security_cacert_file" "$security_cert_file" "$security_key_file" \
"$node_count" "$opt_search"
gen_adv_conf "$adv_conf"
if [[ $opt_strong_consistency == 'true' ]]
then
strong_consistency_conf "$riak_conf"
fi
(( pb_port += 10 ))
(( http_port += 10 ))
if [[ $opt_use_security == 'true' ]]
then
(( https_port += 10 ))
else
https_port=0
fi
done
pinfo 'Starting Riak'
for dir in $riak_dir_glob
do
pinfo "Starting Riak in $PWD/$dir"
($dir/bin/riak start; maybe_sleep) &
done
wait
local is_first='true'
local first_node_name='[email protected]'
for dir in $riak_dir_glob
do
if [[ $is_first == 'true' ]]
then
pdebug "Skipping join for $dir"
first_node_name="[email protected]"
local -r riak="$dir/bin/riak"
local -r riak_admin="$dir/bin/riak-admin"
local -r riak_logs="$dir/log"
is_first='false'
# NB: wait for services to come up prior to join
set +o errexit
wait_for_services "$first_node_name" "$riak" "$riak_admin" "$opt_search"
if [[ $? != 0 ]]
then
cat $riak_logs/*.log*
return 1
fi
set -o errexit
else
pinfo "Joining $dir"
pdebug "$dir/bin/riak-admin cluster join \"$first_node_name\""
($dir/bin/riak-admin cluster join "$first_node_name"; maybe_sleep) &
fi
done
wait
commit_cluster "$riak_admin"
if [[ $opt_setup_only == 'false' ]]
then
riak_cluster_config "$riak_admin" "$starting_http_port" "$opt_strong_consistency" "$opt_use_security" "$bucket_type_file_path"
fi
return 0
}
function setup_riak
{
if [[ -f /etc/riak/riak.conf ]] && hash riak && hash riak-admin
then
pinfo 'Riak appears to be installed via package, setting up one-node (singleton) cluster'
else
errexit 'Riak is not installed, exiting (could not find /etc/riak/riak.conf, or riak and riak-admin executables)'
fi
local -ri id_u="$(id -u)"
if (( id_u != 0 ))
then
pinfo 'You are not root, if the following steps fail, re-run script as root or use sudo'
fi
# NB: we only set up singleton nodes from packages using this script
node_count=1
pinfo_options
pinfo 'Stopping Riak'
set +o errexit
riak stop
local platform_data_dir=$(awk -F= '/^platform_data_dir/ { gsub(/[[:space:]]/, "", $2); print $2 }' /etc/riak/riak.conf)
local platform_log_dir=$(awk -F= '/^platform_log_dir/ { gsub(/[[:space:]]/, "", $2); print $2 }' /etc/riak/riak.conf)
pinfo "Removing old Riak data from $platform_data_dir, $platform_log_dir"
for datadir in $platform_data_dir/*
do
find $datadir -type f -delete
done
rm -f $platform_log_dir/*
rm -rf $platform_data_dir/yz_temp
set -o errexit
if [[ $opt_cleanup_only == 'true' ]]
then
exit 0
fi
local -ir pb_port="${opt_pb_port:-$default_pb_port}"
local -ir http_port="${opt_http_port:-$default_http_port}"
if [[ $opt_use_security == 'true' ]]
then
local -ir https_port="$((http_port + 400))"
else
local -ir https_port=0
fi
local -r adv_conf='/etc/riak/advanced.config'
local -r riak_conf_orig='/etc/riak/riak.conf.orig'
pinfo "Configuring $package_riak_conf"
if [[ -f $riak_conf_orig ]]
then
cp -f "$riak_conf_orig" "$package_riak_conf"
else
cp -f "$package_riak_conf" "$riak_conf_orig"
fi
gen_riak_conf "$package_riak_conf" $http_port $pb_port $https_port \
"$security_cacert_file" "$security_cert_file" "$security_key_file" \
"$node_count" "$opt_search"
gen_adv_conf "$adv_conf"
if [[ $opt_strong_consistency == 'true' ]]
then
strong_consistency_conf "$package_riak_conf"
fi
pinfo 'Starting Riak'
set +o errexit
riak start
if [[ $? != 0 ]]
then
cat $platform_log_dir/*.log*
return 1
fi
set -o errexit
local -r riak="$(which riak)"
local -r riak_admin="$(which riak-admin)"
set +o errexit
wait_for_services "[email protected]" "$riak" "$riak_admin" "$opt_search"
if [[ $? != 0 ]]
then
cat $platform_log_dir/*
return 1
fi
set -o errexit
commit_cluster "$riak_admin"
if [[ $opt_setup_only == 'false' ]]
then
riak_cluster_config "$riak_admin" "$http_port" "$opt_strong_consistency" "$opt_use_security"
fi
return 0
}
function usage
{
echo "
$0: set up a Riak cluster (one or several nodes)
Usage:
setup-riak [-p <riak rel or devrel path>]
[-f <riak.conf from installed pkg>]
[-l PB:HTTP] [-d <secs>] [-closxz]
-p Riak devrel or rel path (Default: \"$default_cluster_path\")
-f riak.conf from package (Default: \"$default_riak_conf\")
-d Delay Riak operations (Default: $opt_delay_riak_ops seconds)
-c Set up cluster for Strong Consistency (NB: use at least 5 nodes)
-s Set up cluster to use Riak Security
-x Shut down any nodes and clean up directories.
-z Set up cluster WITHOUT Yokozuna Search (Default: $opt_search)
-o Only start cluster, do not configure bucket types
-l PB:HTTP Use PB as PB port (Default: $default_pb_port),
HTTP as HTTP port (Default: $default_http_port)
"
exit 0
}
while getopts "hcosxzp:f:d:l:" opt; do
case $opt in
p)
opt_cluster_path="$OPTARG";;
f)
opt_riak_conf="$OPTARG";;
d)
opt_delay_riak_ops="$OPTARG";;
l)
opt_ports="$OPTARG";;
c)
opt_strong_consistency='true';;
o)
opt_setup_only='true';;
s)
opt_use_security='true';;
x)
opt_cleanup_only='true';;
z)
opt_search='off';;
*)
usage;;
esac
done
if (( opt_delay_riak_ops > 0 ))
then
delay_riak_ops="$opt_delay_riak_ops"
fi
riak_package='false'
if [[ -n $opt_riak_conf ]]
then
if [[ -s $opt_riak_conf ]]
then
riak_package='true'
declare -r package_riak_conf="$opt_riak_conf"
else
errexit "-f option points to non-existent or empty riak.conf file (\"$opt_riak_conf\")"
fi
else
if [[ -s $default_riak_conf ]]
then
riak_package='true'
declare -r package_riak_conf="$default_riak_conf"
fi
fi
if [[ -n $opt_ports ]]
then
opt_err='false'
declare -i opt_pb_port="${opt_ports%:*}"
declare -i opt_http_port="${opt_ports#*:}"
if (( opt_pb_port < 1024 ))
then
opt_err='true'
perr 'the PB argument to -l must be greater than 1024'
fi
if (( opt_http_port < 1024 ))
then
opt_err='true'
perr 'the HTTP argument to -l must be greater than 1024'
fi
if (( opt_pb_port == opt_http_port ))
then
opt_err='true'
perr 'the PB and HTTP ports can not be the same value'
fi
if [[ $opt_err == 'true' ]]
then
exit 1
fi
fi
# NB: these are passed to scripts as args so they should be
# zero-length strings unless set to a path
security_cacert_file=''
security_cert_file=''
security_key_file=''
if [[ $opt_use_security == 'true' ]]
then
pinfo 'NOTE: using Riak Security. This will require HTTPS and TLS connections.'
declare -r ca_path="$(cd -P "$script_path/test-ca" && pwd)";
if [[ -d $ca_path ]]
then
security_cacert_file="$ca_path/certs/cacert.pem"
security_cert_file="$ca_path/certs/riak-test-cert.pem"
security_key_file="$ca_path/private/riak-test-key.pem"
for file in $security_cacert_file $security_cert_file $security_key_file
do
if [[ ! -f $file ]]
then
errexit "missing security file: $file"
fi
done
declare -r tmp_ca_path="$(make_temp_dir)"
cp -f "$security_cacert_file" "$tmp_ca_path"
security_cacert_file="$tmp_ca_path/cacert.pem"
cp -f "$security_cert_file" "$tmp_ca_path"
security_cert_file="$tmp_ca_path/riak-test-cert.pem"
cp -f "$security_key_file" "$tmp_ca_path"
security_key_file="$tmp_ca_path/riak-test-key.pem"
chmod 755 "$tmp_ca_path"
chmod 644 "$tmp_ca_path"/*
pinfo "Using certificates in $tmp_ca_path"
else
errexit 'missing CA directory'
fi
fi
if [[ $riak_package == 'true' ]]
then
setup_riak
else
declare -r cluster_path="${opt_cluster_path:-$default_cluster_path}"
if [[ -d $cluster_path ]]
then
setup_cluster "$cluster_path"
else
errexit "Riak rel or devrel not found at \"$cluster_path\". Please use -p argument to specify full path."
fi
fi