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
CONFWARN [thrd:app]: Configuration property enable.auto.commit is a consumer property and will be ignored by this producer instance CONFWARN [thrd:app]: Configuration property enable.auto.offset.store is a consumer property and will be ignored by this producer instance CONFWARN [thrd:app]: Configuration property enable.partition.eof is a consumer property and will be ignored by this producer instance CONFWARN [thrd:app]: Configuration property allow.auto.create.topics is a consumer property and will be ignored by this producer instance
The text was updated successfully, but these errors were encountered:
You are right. but this doesn't affect the functionality in any way. I need to change the code to put a flag if the the object is consumer or producer and to apply them only on producer. Any PR is welcome
Only apply "enable.auto.commit", "enable.auto.offset.store",
"enable.partition.eof" and "allow.auto.create.topics" configurations if
the target object is a consumer.
That change fixessilviucpp#73
Only apply "enable.auto.commit", "enable.auto.offset.store",
"enable.partition.eof" and "allow.auto.create.topics" configurations if
the target object is a consumer.
That change fixes#73
These 4 default configurations are injected when not specified by
apply_kafka_default_config/1
routine fromerlkaf_config.cc
.It produces warnings everytime it starts:
CONFWARN [thrd:app]: Configuration property enable.auto.commit is a consumer property and will be ignored by this producer instance
CONFWARN [thrd:app]: Configuration property enable.auto.offset.store is a consumer property and will be ignored by this producer instance
CONFWARN [thrd:app]: Configuration property enable.partition.eof is a consumer property and will be ignored by this producer instance
CONFWARN [thrd:app]: Configuration property allow.auto.create.topics is a consumer property and will be ignored by this producer instance
The text was updated successfully, but these errors were encountered: