Skip to content

Commit b1337b4

Browse files
committed
in_kafka: formatting adjustments
Signed-off-by: CoreidCC <[email protected]>
1 parent 9525f31 commit b1337b4

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

plugins/in_kafka/in_kafka.c

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ static int in_kafka_collect(struct flb_input_instance *ins,
181181
rd_kafka_message_destroy(rkm);
182182

183183

184-
if(!ctx->enable_auto_commit) {
184+
if (!ctx->enable_auto_commit) {
185185
if (ret == FLB_EVENT_ENCODER_SUCCESS) {
186186
rd_kafka_commit(ctx->kafka.rk, NULL, 0);
187187
}
@@ -248,24 +248,23 @@ static int in_kafka_init(struct flb_input_instance *ins,
248248
goto init_error;
249249
}
250250

251-
/* Set the kafka poll timeout dependend on wether we run in our own
252-
* or in the main event thread.
253-
* a) run in main event thread:
254-
* -> minimize the delay we might create
255-
* b) run in our own thread:
256-
* -> optimize for throuput and relay on 'fetch.wait.max.ms'
257-
* which is set to 500 by default default. wa algin our
258-
* timeout with what is set for 'fetch.wait.max.ms'
259-
*/
251+
/* Set the kafka poll timeout depending on whether we run in our own
252+
or in the main event thread.
253+
a) run in main event thread:
254+
-> minimize the delay we might create
255+
b) run in our own thread:
256+
-> optimize for throughput and relay on 'fetch.wait.max.ms'
257+
which is set to 500 by default. we align our
258+
timeout with what is set for 'fetch.wait.max.ms' */
260259
ctx->poll_timeount_ms = 1;
261260
if (ins->is_threaded) {
262-
ctx->poll_timeount_ms = 550; // ensure kafa triggers timeout
261+
ctx->poll_timeount_ms = 550; /* ensure kafa triggers timeout */
263262

264-
// align our timeout with what was configured for fetch.wait.max.ms
263+
/* align our timeout with what was configured for fetch.wait.max.ms */
265264
dsize = sizeof(conf_val);
266265
res = rd_kafka_conf_get(kafka_conf, "fetch.wait.max.ms", conf_val, &dsize);
267266
if (res == RD_KAFKA_CONF_OK && dsize <= sizeof(conf_val)) {
268-
// add 50ms so kafa triggers timout
267+
/* add 50ms so kafa triggers timeout */
269268
ctx->poll_timeount_ms = atoi(conf_val) + 50;
270269
}
271270
}

0 commit comments

Comments
 (0)