diff options
author | Valery Piashchynski <[email protected]> | 2023-01-23 21:17:56 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-01-23 21:18:14 +0100 |
commit | 36e6fd3b8bf879ccdf66221dda150024768554e1 (patch) | |
tree | a270490db6229631b0614327a2dd6a9bd7b175d1 /schemas/config | |
parent | 5c99331459f0f4a617bab89e06cfbfe4183ad1ad (diff) |
fix: update `boltdb` section
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'schemas/config')
-rw-r--r-- | schemas/config/2.0.schema.json | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/schemas/config/2.0.schema.json b/schemas/config/2.0.schema.json index 55c46823..7081d318 100644 --- a/schemas/config/2.0.schema.json +++ b/schemas/config/2.0.schema.json @@ -1287,9 +1287,6 @@ "nats": { "$ref": "#/definitions/NATS_J" }, - "boltdb": { - "$ref": "#/definitions/BoltDB_J" - }, "kafka": { "$ref": "#/definitions/KAFKA_J" }, @@ -1421,6 +1418,30 @@ "type": "integer", "default": 100000 }, + "permissions": { + "description": "Permissions for the boltdb database file", + "type": "integer", + "default": 777 + }, + "file": { + "description": "BoldDB file to create or DB to use", + "type": "string", + "default": "rr.db" + } + } + }, + { + "properties": { + "priority": { + "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority", + "type": "integer", + "default": 10 + }, + "prefetch": { + "description": "Number of job to prefetch from the driver", + "type": "integer", + "default": 100000 + }, "consume_all": { "description": "Consume all payloads, even not Job structured", "type": "boolean", |