Failed to load kafka module

Misti

I am trying out the nxlog kafka out module from below

Link

I get the below error message

ERROR Failed to load module from /usr/local/libexec/nxlog/modules/output/om_kafka.so, /usr/local/libexec/nxlog/modules/output/om_kafka.so: undefined symbol: rd_kafka_topic_new;DSO load failed

ERROR module 'outKafka' is not declared at /usr/local/etc/nxlog/nxlog.conf:65

ERROR route tcproute is not functional without output modules, ignored at /usr/local/etc/nxlog/nxlog.conf:65

I am using :

Nxlog Version - nxlog-ce-2.8.1248

Kafka Version - kafka_2.9.2-0.8.1.1

Latest librdkafka

Also the example programe of librdkafka (rdkafka) for both producer and consumer runs fine so I guess the environment is set correct for librdkafka , but am unable to determine what's causing this problem.

b0ti

The problem is that om_kafka.so is not linked with librdkafka. You will need this in Makefile.am:

om_kafka_la_LIBADD = $(LIBRDKAFKA) $(LIBNX)

The value of $(LIBRDKAFKA) should be properly set ,normally this is done in configure.in. Otherwise you could just use the full path to the library (.so or .la or .a )

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Electron Failed to load Module

From Dev

Haskell Failed to load interface for module

From Dev

Failed to load module in Angular JS

From Dev

Failed to load module "canberra-gtk-module"

From Dev

The Module "aspnetcorev2.dll" failed to load

From Dev

Wildfly Failed to Load Module for Oracle Driver

From

Android Firebase DynamiteModule: Failed to load module descriptor

From Dev

Gtk-Message: Failed to load module "pantheon-filechooser-module"

From Dev

Gtk-Message: Failed to load module “pantheon-filechooser-module”

From Dev

How to fix error: Failed to load module "canberra-gtk-module"

From Dev

What is a "Failed to load module "module-ladspa-sink"" error?

From Dev

Gtk Failed to load module "pantheon-filechooser-module"

From Dev

Problems with importing Tensoflow in Jupyter. DLL load failed. Specific module failed to load

From Dev

ImportError: DLL load failed: The specified module could not be found for numpy

From Dev

pyodbc ImportError: DLL load failed: The specified module could > not be found

From Dev

Python: ImportError: DLL load failed: The specified module could not be found

From Dev

py2exe failed to load specified module

From Dev

"Failed to load module" error for Firebird datasource on WildFly 8.1.0.Final

From Java

ImportError: DLL load failed: The specified module could not be found

From Java

ImportError: DLL load failed: The specified module could not be found

From Dev

Express routing static file: Failed to load module script

From Dev

Pyjnius. ImportError: DLL load failed: The specified module was not found

From Dev

Pyinstaller: Import Error: DLL load failed: The specified module could not be found

From Dev

NLTK ImportError: DLL load failed: The specified module could not be found

From Dev

Failed to load module script when importing a .jpg file in a javascript file

From Java

Failed to load module org.keycloak.keycloak-server-subsystem

From Dev

Scipy ImportError: DLL load failed: The specified module could not be found

From Dev

PyQt5: The DLL load failed: the specified module could not be found

From Dev

Pyinstaller ImportError: DLL load failed: The specified module could not be found

Related Related

  1. 1

    Electron Failed to load Module

  2. 2

    Haskell Failed to load interface for module

  3. 3

    Failed to load module in Angular JS

  4. 4

    Failed to load module "canberra-gtk-module"

  5. 5

    The Module "aspnetcorev2.dll" failed to load

  6. 6

    Wildfly Failed to Load Module for Oracle Driver

  7. 7

    Android Firebase DynamiteModule: Failed to load module descriptor

  8. 8

    Gtk-Message: Failed to load module "pantheon-filechooser-module"

  9. 9

    Gtk-Message: Failed to load module “pantheon-filechooser-module”

  10. 10

    How to fix error: Failed to load module "canberra-gtk-module"

  11. 11

    What is a "Failed to load module "module-ladspa-sink"" error?

  12. 12

    Gtk Failed to load module "pantheon-filechooser-module"

  13. 13

    Problems with importing Tensoflow in Jupyter. DLL load failed. Specific module failed to load

  14. 14

    ImportError: DLL load failed: The specified module could not be found for numpy

  15. 15

    pyodbc ImportError: DLL load failed: The specified module could > not be found

  16. 16

    Python: ImportError: DLL load failed: The specified module could not be found

  17. 17

    py2exe failed to load specified module

  18. 18

    "Failed to load module" error for Firebird datasource on WildFly 8.1.0.Final

  19. 19

    ImportError: DLL load failed: The specified module could not be found

  20. 20

    ImportError: DLL load failed: The specified module could not be found

  21. 21

    Express routing static file: Failed to load module script

  22. 22

    Pyjnius. ImportError: DLL load failed: The specified module was not found

  23. 23

    Pyinstaller: Import Error: DLL load failed: The specified module could not be found

  24. 24

    NLTK ImportError: DLL load failed: The specified module could not be found

  25. 25

    Failed to load module script when importing a .jpg file in a javascript file

  26. 26

    Failed to load module org.keycloak.keycloak-server-subsystem

  27. 27

    Scipy ImportError: DLL load failed: The specified module could not be found

  28. 28

    PyQt5: The DLL load failed: the specified module could not be found

  29. 29

    Pyinstaller ImportError: DLL load failed: The specified module could not be found

HotTag

Archive