summaryrefslogtreecommitdiff
path: root/schemas/config
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-01-23 21:17:56 +0100
committerValery Piashchynski <[email protected]>2023-01-23 21:18:14 +0100
commit36e6fd3b8bf879ccdf66221dda150024768554e1 (patch)
treea270490db6229631b0614327a2dd6a9bd7b175d1 /schemas/config
parent5c99331459f0f4a617bab89e06cfbfe4183ad1ad (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.json27
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",