|
1 | 1 | { |
2 | 2 | "zookeeper": { |
3 | 3 | "connectionString": "127.0.0.1:2181/backbeat", |
4 | | - "autoCreateNamespace": true |
| 4 | + "autoCreateNamespace": false |
5 | 5 | }, |
6 | 6 | "kafka": { |
7 | 7 | "hosts": "127.0.0.1:9092", |
| 8 | + "compressionType": "none", |
| 9 | + "requiredAcks": 1, |
8 | 10 | "backlogMetrics": { |
9 | 11 | "zkPath": "/run/kafka-backlog-metrics", |
10 | 12 | "intervalS": 60 |
11 | | - } |
| 13 | + }, |
| 14 | + "maxRequestSize": 5000020 |
12 | 15 | }, |
13 | 16 | "s3": { |
14 | 17 | "host": "127.0.0.1", |
15 | 18 | "port": 8000 |
16 | 19 | }, |
| 20 | + "vaultAdmin": { |
| 21 | + "host": "127.0.0.1", |
| 22 | + "port": 8500 |
| 23 | + }, |
| 24 | + "replicationGroupId": "RG001 ", |
17 | 25 | "queuePopulator": { |
18 | 26 | "cronRule": "*/5 * * * * *", |
19 | 27 | "batchMaxRead": 10000, |
| 28 | + "batchTimeoutMs": 9000, |
20 | 29 | "zookeeperPath": "/queue-populator", |
21 | 30 | "logSource": "bucketd", |
22 | 31 | "bucketd": { |
23 | 32 | "host": "127.0.0.1", |
24 | 33 | "port": 9000 |
25 | 34 | }, |
| 35 | + "dmd": { |
| 36 | + "host": "127.0.0.1", |
| 37 | + "port": 9990 |
| 38 | + }, |
| 39 | + "kafka": { |
| 40 | + "topic": "backbeat-oplog", |
| 41 | + "consumerGroupId": "backbeat-qp-oplog-group" |
| 42 | + }, |
26 | 43 | "probeServer": { |
27 | 44 | "bindAddress": "localhost", |
28 | 45 | "port": 4042 |
|
37 | 54 | "port": 8000 |
38 | 55 | }, |
39 | 56 | "auth": { |
40 | | - "type": "account", |
41 | | - "account": "bart", |
| 57 | + "type": "role", |
42 | 58 | "vault": { |
43 | 59 | "host": "127.0.0.1", |
44 | 60 | "port": 8500, |
45 | | - "adminPort": 8600 |
| 61 | + "adminPort": 8600, |
| 62 | + "adminCredentialsFile": "/home/scality/backbeat/node_modules/vaultclient/tests/utils/admincredentials.json" |
46 | 63 | } |
47 | 64 | } |
48 | 65 | }, |
49 | 66 | "destination": { |
50 | 67 | "transport": "http", |
51 | 68 | "bootstrapList": [ |
52 | | - { "site": "sf", "servers": ["127.0.0.1:9443"], "echo": false }, |
53 | | - { "site": "aws-location", "type": "aws_s3" } |
| 69 | + { "site": "sf", "servers": ["127.0.0.1:8000"], "echo": false } |
54 | 70 | ], |
55 | 71 | "auth": { |
56 | | - "type": "account", |
57 | | - "account": "lisa" |
| 72 | + "type": "role", |
| 73 | + "vault": { |
| 74 | + "host": "127.0.0.1", |
| 75 | + "port": 8500, |
| 76 | + "adminPort": 8600, |
| 77 | + "adminCredentialsFile": "/home/scality/backbeat/node_modules/vaultclient/tests/utils/admincredentials.json" |
| 78 | + } |
58 | 79 | } |
59 | 80 | }, |
60 | 81 | "topic": "backbeat-replication", |
| 82 | + "dataMoverTopic": "backbeat-data-mover", |
61 | 83 | "replicationStatusTopic": "backbeat-replication-status", |
62 | 84 | "replicationFailedTopic": "backbeat-replication-failed", |
63 | 85 | "monitorReplicationFailures": true, |
|
70 | 92 | ], |
71 | 93 | "queueProcessor": { |
72 | 94 | "groupId": "backbeat-replication-group", |
73 | | - "retryTimeoutS": 300, |
| 95 | + "retry": { |
| 96 | + "scality": { |
| 97 | + "maxRetries": 5, |
| 98 | + "timeoutS": 300, |
| 99 | + "backoff": { |
| 100 | + "min": 1000, |
| 101 | + "max": 300000, |
| 102 | + "jitter": 0.1, |
| 103 | + "factor": 1.5 |
| 104 | + } |
| 105 | + } |
| 106 | + }, |
74 | 107 | "concurrency": 10, |
75 | 108 | "mpuPartsConcurrency": 10, |
76 | | - "probeServer": [ |
77 | | - { |
78 | | - "site": "aws-location", |
79 | | - "bindAddress": "localhost", |
80 | | - "port": "4043" |
81 | | - }, { |
82 | | - "site" : "us-east-1", |
83 | | - "bindAddress": "localhost", |
84 | | - "port": "4044" |
85 | | - } |
86 | | - ] |
| 109 | + "probeServer": { |
| 110 | + "bindAddress": "localhost", |
| 111 | + "port": 4043 |
| 112 | + } |
87 | 113 | }, |
88 | 114 | "replicationStatusProcessor": { |
89 | 115 | "groupId": "backbeat-replication-group", |
90 | | - "retryTimeoutS": 300, |
| 116 | + "retry": { |
| 117 | + "maxRetries": 5, |
| 118 | + "timeoutS": 300, |
| 119 | + "backoff": { |
| 120 | + "min": 1000, |
| 121 | + "max": 300000, |
| 122 | + "jitter": 0.1, |
| 123 | + "factor": 1.5 |
| 124 | + } |
| 125 | + }, |
91 | 126 | "concurrency": 10, |
92 | | - "logConsumerMetricsIntervalS": 60, |
93 | 127 | "probeServer": { |
94 | 128 | "bindAddress": "localhost", |
95 | 129 | "port": 4045 |
|
137 | 171 | "conductor": { |
138 | 172 | "backlogControl": { "enabled": true }, |
139 | 173 | "cronRule": "*/5 * * * * *", |
140 | | - "concurrency": 10 |
| 174 | + "concurrency": 10, |
| 175 | + "probeServer": { |
| 176 | + "bindAddress": "0.0.0.0", |
| 177 | + "port": 8552 |
| 178 | + } |
141 | 179 | }, |
142 | 180 | "bucketProcessor": { |
143 | 181 | "groupId": "backbeat-lifecycle-bucket-processor-group", |
|
151 | 189 | "factor": 1.5 |
152 | 190 | } |
153 | 191 | }, |
154 | | - "concurrency": 10 |
| 192 | + "concurrency": 10, |
| 193 | + "probeServer": { |
| 194 | + "bindAddress": "0.0.0.0", |
| 195 | + "port": 8553 |
| 196 | + } |
155 | 197 | }, |
156 | 198 | "objectProcessor": { |
157 | 199 | "groupId": "backbeat-lifecycle-object-processor-group", |
|
165 | 207 | "factor": 1.5 |
166 | 208 | } |
167 | 209 | }, |
168 | | - "concurrency": 10 |
| 210 | + "concurrency": 10, |
| 211 | + "probeServer": { |
| 212 | + "bindAddress": "0.0.0.0", |
| 213 | + "port": 8554 |
| 214 | + } |
169 | 215 | } |
170 | 216 | } |
171 | 217 | }, |
|
0 commit comments