summaryrefslogtreecommitdiff
path: root/schemas/config/2.0.schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'schemas/config/2.0.schema.json')
-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",