Giter VIP home page Giter VIP logo

Comments (3)

DarioBalinzo avatar DarioBalinzo commented on July 24, 2024

Hi,
you can't have multiple index.prefix, but you have two solutions:
in your example you can use my_ as index prefix, or alternatively you might create two instances of the connetor (each one using a single index.prefix).

Then, the output topic is based on the name of the input index. But if you need to put the output in a single topic, you might use the confluent connect transformer https://docs.confluent.io/platform/current/connect/transforms/regexrouter.html#regexrouter in order to rename the topic as you prefer.

Hope this helps

from kafka-connect-elasticsearch-source.

liz72703 avatar liz72703 commented on July 24, 2024

Hi there,

Is there another means of doing this?

I need to send multiple indexes to one fixed topic name but the connector seems to be completely ignoring the regex configuration entries.

For example qradar-wcf-000011, qradar-wcf-000012, qradar-wcf-000013 (they increment on elasticsearch over time) all to a kafka topic called "qradar-wcf".

Thanks,
Liz

from kafka-connect-elasticsearch-source.

hyperbaba avatar hyperbaba commented on July 24, 2024

Add the following to your config part :

"transforms": "dropTopicPrefix",
"transforms.dropTopicPrefix.type": "org.apache.kafka.connect.transforms.RegexRouter",
"transforms.dropTopicPrefix.regex": "(.*)qradar-wcf-(.*)",
"transforms.dropTopicPrefix.replacement": "qradar-wcf",

this will publish all the messages to the topic qradar-wcf

from kafka-connect-elasticsearch-source.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.