Properties
| Name | Type | Description |
|---|---|---|
| replication_factor | integer | Number of replicas for each shard |
| write_consistency_factor | integer | Minimal number successful responses from replicas to consider operation successful |
| read_fan_out_factor | integer | Fan-out every read request to these many additional remote nodes (and return first available response) |
| read_fan_out_delay_ms | integer | Delay in milliseconds before sending read requests to remote nodes |
| on_disk_payload | boolean | If true - point's payload will not be stored in memory. It will be read from the disk every time it is requested. This setting saves RAM by (slightly) increasing the response time. Note: those payload |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CollectionParamsDiff",
"title": "CollectionParamsDiff",
"type": "object",
"properties": {
"replication_factor": {
"description": "Number of replicas for each shard",
"type": "integer",
"format": "uint32",
"minimum": 1,
"nullable": true
},
"write_consistency_factor": {
"description": "Minimal number successful responses from replicas to consider operation successful",
"type": "integer",
"format": "uint32",
"minimum": 1,
"nullable": true
},
"read_fan_out_factor": {
"description": "Fan-out every read request to these many additional remote nodes (and return first available response)",
"type": "integer",
"format": "uint32",
"minimum": 0,
"nullable": true
},
"read_fan_out_delay_ms": {
"description": "Delay in milliseconds before sending read requests to remote nodes",
"type": "integer",
"format": "uint64",
"minimum": 0,
"nullable": true
},
"on_disk_payload": {
"description": "If true - point's payload will not be stored in memory. It will be read from the disk every time it is requested. This setting saves RAM by (slightly) increasing the response time. Note: those payload values that are involved in filtering and are indexed - remain in RAM.",
"default": null,
"type": "boolean",
"nullable": true
}
}
}