diff options
Diffstat (limited to 'schemas/config/3.0.schema.json')
-rw-r--r-- | schemas/config/3.0.schema.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/schemas/config/3.0.schema.json b/schemas/config/3.0.schema.json index bba1e50a..a807cdef 100644 --- a/schemas/config/3.0.schema.json +++ b/schemas/config/3.0.schema.json @@ -1416,13 +1416,18 @@ "type": "object", "properties": { "num_pollers": { - "description": "Number of threads which will try to obtain the job from the priority queue. Default is the number of the logical CPU cores", + "description": "Number of threads which will try to obtain the job from the priority queue. Default is the number of workers+1", "type": "integer", "examples": [ 10, 32 ] }, + "timeout": { + "description": "JOBS Push operation timeout in seconds", + "type": "integer", + "default": 60 + }, "pipeline_size": { "description": "Size of the internal priority queue, if the internal PQ reach the max number of elements, the Push operation will be blocked", "type": "integer", |