How to install Kafka Connect connector plugins

Поділитися
Вставка
  • Опубліковано 16 гру 2024

КОМЕНТАРІ • 38

  • @reggiechou392
    @reggiechou392 3 роки тому +1

    Thank you for sharing, and look forward to more related introductions about the deployment and maintenance of the production environment

  • @mirshahrukhsahito7904
    @mirshahrukhsahito7904 6 днів тому

    i am having an issue, i am unable to locate the file where /var/log/message path is written, bcoz of higher storage usage i want to change the directory of that messages file to another directory , plz tell me how do i do it

  • @localboyvijay9628
    @localboyvijay9628 2 роки тому

    Thanks a lot.. Do you have any documentation for standalone vs distributed connect? when it is come to production system which is better to manage manual or confluent to use install connectors?

  • @hymavathikalva8959
    @hymavathikalva8959 2 роки тому

    Thanks for the video, how can we install kafka connect in confluent cloud which is used as service in Google cloud platform

    • @rmoff
      @rmoff  2 роки тому

      Hi,
      Confluent Cloud offers managed connectors, for which you can see a list here: docs.confluent.io/cloud/current/connectors/index.html
      If there isn't a connector available that you want to use you can run your own Kafka Connect worker to connect to Confluent Cloud, e.g. rmoff.net/2021/01/11/running-a-self-managed-kafka-connect-worker-for-confluent-cloud/

  • @MegaSriku
    @MegaSriku 2 роки тому

    Hi @Robin , Don't we need to specify the consumer group details , while creating the connectors ?

    • @rmoff
      @rmoff  2 роки тому

      No, you don't need to - Kafka Connect handles the implementation of consumer groups. If you've got any more questions please head over to forum.confluent.io/. Thanks!

  • @MESSAOUDIHamza
    @MESSAOUDIHamza 4 роки тому +1

    Hi, I want to thank you for this video, I want to use Kafka connect with debezium and CDC for a real time notification of changes in DB, I tried Debezium Engine for test and it work fine, now want to deploy the server version and need to work inside Kafka connect. my question is kafka connect need a virtual machine to install in or not ? i'm using azure cloud. thanks

    • @rmoff
      @rmoff  4 роки тому +2

      Kafka Connect runs on its own JVM process, separate from the Kafka broker. You can deploy it directly on bare metal/VM, or in a container.

    • @MESSAOUDIHamza
      @MESSAOUDIHamza 4 роки тому

      Thank you so much Robin, I don't know what to use, Debezium Server or Debezium with kafka connect ?

    • @rmoff
      @rmoff  4 роки тому

      @@MESSAOUDIHamza I've only used Debezium as a plugin in Kafka Connect, so I don't know about Server, sorry. There is a good community chat for Debezium here where you might ask: gitter.im/debezium/user

  • @OutboxThinker1
    @OutboxThinker1 2 роки тому

    Hi Robin, nice video. When i install the connector manually, i cannot access it through localhost:8083 :(

    • @rmoff
      @rmoff  2 роки тому +1

      Did you restart the Kafka Connect worker? That's necessary for it to be picked up. If you have any more questions then forum.confluent.io/ is the best place to ask :)

    • @OutboxThinker1
      @OutboxThinker1 2 роки тому

      @@rmoff Thanks for your quick reply. I wasn't aware that the connector was running inside my kafka container, that was the reason i was not able to access it from outside of Kafka container. Note that I only had this problem while using the manual installation. Thanks for sharing your knowledge

  • @muhammadhozaifa8070
    @muhammadhozaifa8070 3 роки тому

    HI, thank you for this video. This video is really helpful. I just want to know, is there any way we can use kafka connect without docker in windows 10?

    • @rmoff
      @rmoff  3 роки тому

      Yes, check out www.confluent.io/blog/set-up-and-run-kafka-on-windows-linux-wsl-2

  • @danielbelemduarte
    @danielbelemduarte 3 роки тому

    Great video. I'm trying to have 2 sink connector to the same MongoDB but to read from different kafka topics and write on different MongoDB Collections. This works fine for one of the topics, but when I configure the second Sink Connector I get the following error:
    "ERROR Failed to write mongodb documents (com.mongodb.kafka.connect.sink.MongoSinkTask)
    java.lang.IllegalArgumentException: Invalid BSON field name connect.decimal.precision"
    I'm following the same maming convetions for both topics, not sure what is happening. Any help ?
    Thank you,
    Daniel

    • @rmoff
      @rmoff  3 роки тому +1

      Hi Daniel, I don't know the answer to this, sorry. You should try asking over at forum.confluent.io/ :)

  • @nicholassmith831
    @nicholassmith831 4 роки тому

    very new to Kafka. we have it installed on a unix machine and its running fine. my problem is with trying to get a kafka source datagen connector to see an avsc file stored in a mounted folder. path name of the schema file is /mnt/file.avsc and the error message I see in the logs is 'Unable to read the '/mnt/file.avsc' schema file'. Any pointers on what I'm doing wrong?

    • @rmoff
      @rmoff  4 роки тому

      Best place to ask is over on cnfl.io/slack

  • @Gr3mlinz
    @Gr3mlinz 3 роки тому

    Hi, thank you for the video. if I installed Confluent platform from RPM, what should be CONFLUENT_HOME? Looks like there is no value that can satisfy all commands, because in that case Confluent is spread all over the system and not in one subdirectory.

    • @rmoff
      @rmoff  3 роки тому +1

      I don't know, sorry. Try forum.confluent.io/ :)

  • @shuchikumari8031
    @shuchikumari8031 3 роки тому

    Hello.. Can we connect ksqldb to kafka, it is possible that we can connect it.

    • @rmoff
      @rmoff  3 роки тому

      Yes, ksqlDB works directly with Kafka. In fact, you *have* to connect ksqlDB to Kafka for it to work. Head to forum.confluent.io/ if you have any more questions.

    • @shuchikumari8031
      @shuchikumari8031 3 роки тому

      @@rmoff sir actually my concern is we can connect kafka to mysql, so thier is any possible way that we can connect to ksql db to mysql, because I am doing one project in denodo platform thier only mysql Or oracle this type of db support.

    • @rmoff
      @rmoff  3 роки тому

      @@shuchikumari8031 Please post your question at forum.confluent.io/ and I will answer it there

  • @TheHitamnoah
    @TheHitamnoah 3 роки тому

    Hi , can I use Kafka connect on windows os? I'm manage to install Kafka and Zookeeper but not manage install connect.

    • @rmoff
      @rmoff  3 роки тому +1

      Yes, check out this blog for a guide: www.confluent.io/blog/set-up-and-run-kafka-on-windows-linux-wsl-2

  • @ayanmukhuty3204
    @ayanmukhuty3204 3 роки тому

    This command fails curl -s localhost:8083/connector-plugins|jq '.[].class'
    bash: jq: command not found
    (23) Failed writing body

    • @rmoff
      @rmoff  3 роки тому

      You need to have jq installed if you want to use it :)
      If you don't have access to it you would just run curl -s localhost:8083/connector-plugins and manually read the JSON that's returned.

  • @ghousemohammad1489
    @ghousemohammad1489 4 роки тому +1

    how to connect Kafka to salesforce

    • @rmoff
      @rmoff  4 роки тому

      www.confluent.io/hub/confluentinc/kafka-connect-salesforce

    • @brunomartinho4086
      @brunomartinho4086 3 роки тому

      @@rmoff , is authentication required for salesforce or does it auto detect ?

    • @rmoff
      @rmoff  3 роки тому

      @@brunomartinho4086 I don't know, sorry - try asking at forum.confluent.io/

  • @georgelza
    @georgelza 6 місяців тому

    why why oh why have i not found this before.... would have saved me so much grieve, hehehe...
    now to figure out why my local cp kafka connect does not want to sink to MongoAtlas hosted collection...