Replies: 1 comment
-
librdkafka's cmake builds are unsupported and are maintained by the community. It currently lacks curl/oidc support. PRs welcome. Recommend using ./configure and make |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
At this point, librdkafka-1.7.0 is referenced directly within fluent-bit, so none of the
oidc
properties are available. I attempted to compile in support by replacing that directory with the current master branch code and recompiling (using the-DWITH_CURL
and-DWITH_SASL_OAUTHBEARER
flags). The build does successfully add therdkafka_sasl_oauthbearer_oidc.c
to the compile list, but it does not recognize that libcurl is available to the build process:I am running on a rhel7 based docker image, installing
libcurl-devel
via yum before runningcmake
. I understand that this is a bit of an odd issue because the build is sourced from the fluent-bit repo itself, but the challenge here is the detection of libcurl support at compile time. My cmake command for fluent-bit is:Beta Was this translation helpful? Give feedback.
All reactions