fork of https://github.com/sourcegraph/zoekt
1{
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "$ref": "#/definitions/RingHashLoadBalancingConfig",
4 "definitions": {
5 "RingHashLoadBalancingConfig": {
6 "properties": {
7 "minRingSize": {
8 "type": "string",
9 "description": "A client-side option will cap these values to 4096. If either of these values are greater than the client-side cap, they will be treated as the client-side cap value. Optional, defaults to 1024, max 8M."
10 },
11 "maxRingSize": {
12 "type": "string",
13 "description": "Optional, defaults to 4096, max 8M."
14 }
15 },
16 "additionalProperties": true,
17 "type": "object",
18 "title": "Ring Hash Load Balancing Config",
19 "description": "Configuration for ring_hash LB policy."
20 }
21 }
22}