-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhbase.sh
executable file
·46 lines (43 loc) · 1.24 KB
/
hbase.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
#!/bin/bash
# hbase + YCSB-mixed + Network delay (1ms)
python3 $HOME/workdir/xinda/main.py \
--sys_name hbase \
--log_root_dir $HOME/workdir/data/example \
--data_dir sample_test \
--fault_type nw \
--fault_location hbase-regionserver \
--fault_duration 60 \
--fault_severity slow-1ms \
--fault_start_time 60 \
--bench_exec_time 150 \
--ycsb_wkl mixed \
--benchmark ycsb \
--iter 1
# hbase + YCSB-mixed + network packet loss (10%)
python3 $HOME/workdir/xinda/main.py \
--sys_name hbase \
--log_root_dir $HOME/workdir/data/example \
--data_dir sample_test \
--fault_type nw \
--fault_location hbase-regionserver \
--fault_duration 60 \
--fault_severity flaky-p10 \
--fault_start_time 60 \
--bench_exec_time 150 \
--ycsb_wkl mixed \
--benchmark ycsb \
--iter 1
# hbase + YCSB-mixed + filesystem delay (1ms)
python3 $HOME/workdir/xinda/main.py \
--sys_name hbase \
--log_root_dir $HOME/workdir/data/example \
--data_dir sample_test \
--fault_type fs \
--fault_location hbase-regionserver \
--fault_duration 60 \
--fault_severity 1000 \
--fault_start_time 60 \
--bench_exec_time 150 \
--ycsb_wkl mixed \
--benchmark ycsb \
--iter 1