@@ -21,7 +21,8 @@ start_standalone_without_compactor() {
21
21
--backend sqlite \
22
22
--sql-endpoint ${RW_SQLITE_DB} \
23
23
--state-store hummock+minio://hummockadmin:[email protected] :9301/hummock001 \
24
- --data-directory hummock_001" \
24
+ --data-directory hummock_001 \
25
+ --config-path src/config/ci-single-node-standalone.toml" \
25
26
--compute-opts=" \
26
27
--listen-addr 127.0.0.1:5688 \
27
28
--prometheus-listener-addr 127.0.0.1:1222 \
@@ -30,13 +31,15 @@ start_standalone_without_compactor() {
30
31
--parallelism 4 \
31
32
--total-memory-bytes 8589934592 \
32
33
--role both \
33
- --meta-address http://127.0.0.1:5690" \
34
+ --meta-address http://127.0.0.1:5690 \
35
+ --config-path src/config/ci-single-node-standalone.toml" \
34
36
--frontend-opts=" \
35
37
--listen-addr 127.0.0.1:4566 \
36
38
--advertise-addr 127.0.0.1:4566 \
37
39
--prometheus-listener-addr 127.0.0.1:2222 \
38
40
--health-check-listener-addr 127.0.0.1:6786 \
39
- --meta-addr http://127.0.0.1:5690" > " $1 " 2>&1
41
+ --meta-addr http://127.0.0.1:5690 \
42
+ --config-path src/config/ci-single-node-standalone.toml" > " $1 " 2>&1
40
43
}
41
44
42
45
# You can fill up this section by consulting
@@ -52,7 +55,8 @@ start_standalone() {
52
55
--backend sqlite \
53
56
--sql-endpoint ${RW_SQLITE_DB} \
54
57
--state-store hummock+minio://hummockadmin:[email protected] :9301/hummock001 \
55
- --data-directory hummock_001" \
58
+ --data-directory hummock_001 \
59
+ --config-path src/config/ci-single-node-standalone.toml" \
56
60
--compute-opts=" \
57
61
--listen-addr 127.0.0.1:5688 \
58
62
--prometheus-listener-addr 127.0.0.1:1222 \
@@ -61,18 +65,21 @@ start_standalone() {
61
65
--parallelism 4 \
62
66
--total-memory-bytes 8589934592 \
63
67
--role both \
64
- --meta-address http://127.0.0.1:5690" \
68
+ --meta-address http://127.0.0.1:5690 \
69
+ --config-path src/config/ci-single-node-standalone.toml" \
65
70
--frontend-opts=" \
66
71
--listen-addr 127.0.0.1:4566 \
67
72
--advertise-addr 127.0.0.1:4566 \
68
73
--prometheus-listener-addr 127.0.0.1:2222 \
69
74
--health-check-listener-addr 127.0.0.1:6786 \
70
- --meta-addr http://127.0.0.1:5690" \
75
+ --meta-addr http://127.0.0.1:5690 \
76
+ --config-path src/config/ci-single-node-standalone.toml" \
71
77
--compactor-opts=" \
72
78
--listen-addr 127.0.0.1:6660 \
73
79
--prometheus-listener-addr 127.0.0.1:1260 \
74
80
--advertise-addr 127.0.0.1:6660 \
75
- --meta-address http://127.0.0.1:5690" > " $1 " 2>&1
81
+ --meta-address http://127.0.0.1:5690 \
82
+ --config-path src/config/ci-single-node-standalone.toml" > " $1 " 2>&1
76
83
}
77
84
78
85
stop_standalone () {
0 commit comments