You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| allowAutoTopicCreation | true | Determines if a topic should be created if it doesn't exist while consuming. |
223
223
| **maxBytesPerPartition** | 1048576 (1MB) | determines how many bytes can be fetched in one request from a single partition. There is a change in semantics, this size grows dynamically if a single message larger than this is encountered, and the client does not get stuck. |
224
224
| minBytes | 1 | Minimum number of bytes the broker responds with (or wait until `maxWaitTimeInMs`) |
225
+
| **maxWaitTimeInMs** | 500 | Maximum time the broker may wait to fill the Fetch response with minBytes of messages. Its default value has been changed to match librdkafka's configuration.
225
226
| maxBytes | 10485760 (10MB) | Maximum number of bytes the broker responds with. |
226
227
| **retry** | object | Identical to `retry` in the common configuration. This takes precedence over the common config retry. |
227
228
| readUncommitted | false | If true, consumer will read transactional messages which have not been committed. |
0 commit comments