Replies: 1 comment 4 replies
-
Can you provide your producer config? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
We are using rsyslog with librdkafka in our log system, but currently we suffer from unexpectly crash of the rsyslog process and the backtrace shows that the reason it quit is signal 6, Aborted.
The full backtrace indicates a assert in
rd_kafka_msgset_writer_write_msg
stop the whole process:Core was generated by `/usr/local/sbin/rsyslogd -n -f /etc/rsyslog.d/rsyslog-classify.conf'.
Program terminated with signal 6, Aborted.
#0 0x00007fd5b8e4f387 in raise () from /lib64/libc.so.6
I checked out the commit (74b1790 v1.6.0-RC2 ) which we used to build rsyslog and found the source code of
rd_kafka_msgset_writer_write_msg
is:The code shows that we failed in
rd_assert(outlen == actual_written)
. However there are serval version ofrd_kafka_msgset_writer_write_msg
involved here and looks diffcult to me.So I wonder what situation will cause the outlen != actual_written, is there someting wrong with my kafka brokers (v2.0.0)?
Hope for any reply, thanks ,
that happened quite frequence online (3~5 coredump per hour)
Beta Was this translation helpful? Give feedback.
All reactions