Skip to content

Commit 6c064be

Browse files
feldera-botryzhyk
authored andcommitted
[ci] apply automatic fixes
Signed-off-by: feldera-bot <feldera-bot@feldera.com>
1 parent a1178aa commit 6c064be

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

openapi.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7201,7 +7201,8 @@
72017201
"max_batch_size": {
72027202
"type": "integer",
72037203
"format": "int64",
7204-
"description": "Maximum batch size, in records.\n\nThis is the maximum number of records to process in one batch through\nthe circuit. The time and space cost of processing a batch is\nasymptotically superlinear in the size of the batch, but very small\nbatches are less efficient due to constant factors.\n\nThis should usually be less than `max_queued_records`, to give the\nconnector a round-trip time to restart and refill the buffer while\nbatches are being processed.\n\nSome input adapters might not honor this setting.\n\nThe default is 10,000.",
7204+
"description": "Maximum number of records from this connector to process in a single batch.\n\nWhen set, this caps how many records are taken from the connector’s input\nbuffer and pushed through the circuit at once.\n\nThis is typically configured lower than `max_queued_records` to allow the\nconnector time to restart and refill its buffer while a batch is being\nprocessed.\n\nNot all input adapters honor this limit.\n\nIf this is not set, the batch size is derived from `max_worker_batch_size`.",
7205+
"nullable": true,
72057206
"minimum": 0
72067207
},
72077208
"max_queued_records": {
@@ -7210,6 +7211,13 @@
72107211
"description": "Backpressure threshold.\n\nMaximal number of records queued by the endpoint before the endpoint\nis paused by the backpressure mechanism.\n\nFor input endpoints, this setting bounds the number of records that have\nbeen received from the input transport but haven't yet been consumed by\nthe circuit since the circuit, since the circuit is still busy processing\nprevious inputs.\n\nFor output endpoints, this setting bounds the number of records that have\nbeen produced by the circuit but not yet sent via the output transport endpoint\nnor stored in the output buffer (see `enable_output_buffer`).\n\nNote that this is not a hard bound: there can be a small delay between\nthe backpressure mechanism is triggered and the endpoint is paused, during\nwhich more data may be queued.\n\nThe default is 1 million.",
72117212
"minimum": 0
72127213
},
7214+
"max_worker_batch_size": {
7215+
"type": "integer",
7216+
"format": "int64",
7217+
"description": "Maximum number of records processed per batch, per worker thread.\n\nWhen `max_batch_size` is not set, this setting is used to cap\nthe number of records that can be taken from the connector’s input\nbuffer and pushed through the circuit at once. The effective batch size is computed as:\n`max_worker_batch_size × workers`.\n\nThis provides an alternative to `max_batch_size` that automatically adjusts batch\nsize as the number of worker threads changes to maintain constant amount of\nwork per worker per batch.\n\nDefaults to 10,000 records per worker.",
7218+
"nullable": true,
7219+
"minimum": 0
7220+
},
72137221
"paused": {
72147222
"type": "boolean",
72157223
"description": "Create connector in paused state.\n\nThe default is `false`."

0 commit comments

Comments
 (0)