You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am using a kafka producer to pass data to my kafka, the problem is that pointing to localhost I always create the topic that I specify in the "Topic" field but then after a while I skip the following error and I don't know how to fix it.
The error is :
019/11/25 13:16:58 - Kafka producer.0 - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Error desconocido
2019/11/25 13:16:58 - Kafka producer.0 - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : java.lang.IllegalStateException: java.util.concurrent.TimeoutException: Timeout after waiting for 5000 ms.
2019/11/25 13:16:58 - Kafka producer.0 - at org.pentaho.big.data.kettle.plugins.kafka.KafkaProducerOutput.processRow(KafkaProducerOutput.java:123)
2019/11/25 13:16:58 - Kafka producer.0 - at org.pentaho.di.trans.step.RunThread.run(RunThread.java:62)
2019/11/25 13:16:58 - Kafka producer.0 - at java.lang.Thread.run(Thread.java:748)
2019/11/25 13:16:58 - Kafka producer.0 - Caused by: java.util.concurrent.TimeoutException: Timeout after waiting for 5000 ms.
2019/11/25 13:16:58 - Kafka producer.0 - at org.apache.kafka.clients.producer.internals.FutureRecordMetadata.get(FutureRecordMetadata.java:64)
2019/11/25 13:16:58 - Kafka producer.0 - at org.apache.kafka.clients.producer.internals.FutureRecordMetadata.get(FutureRecordMetadata.java:25)
2019/11/25 13:16:58 - Kafka producer.0 - at org.pentaho.big.data.kettle.plugins.kafka.KafkaProducerOutput.processRow(KafkaProducerOutput.java:119)
2019/11/25 13:16:58 - Kafka producer.0 - ... 2 more
2019/11/25 13:17:23 - Kafka producer.0 - Procesamiento finalizado (I=0, O=0, R=1, W=0, U=0, E=1)
2019/11/25 13:17:23 - Kafka - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Errores detectados!
2019/11/25 13:17:23 - Spoon - La transformaci�n ha finalizado!!
2019/11/25 13:17:23 - Kafka - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Errores detectados!
2019/11/25 13:17:23 - Kafka - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Errores detectados!
2019/11/25 13:17:23 - Kafka - Transformaci�n detectada
2019/11/25 13:17:23 - Kafka - Transformaci�n est� matando los otros pasos!
The text was updated successfully, but these errors were encountered:
I explain to you, the connection I am making is direct.
So far for testing I have used a program in python to insert data into a specific topic. With this code everything works correctly (pointing to the same boostrap server that I am targeting with pentaho / kafka-producer).
Both the python and the pentaho create the topic if it does not exist when executing the kafka producer but only in python is the data insertion being executed while in pentaho the error I attached in my first comment is skipped.
-Attached python code:
import sys
import json
import math
from datetime import datetime
from time import sleep
from kafka import KafkaProducer
Hello, I am using a kafka producer to pass data to my kafka, the problem is that pointing to localhost I always create the topic that I specify in the "Topic" field but then after a while I skip the following error and I don't know how to fix it.
The error is :
019/11/25 13:16:58 - Kafka producer.0 - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Error desconocido
2019/11/25 13:16:58 - Kafka producer.0 - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : java.lang.IllegalStateException: java.util.concurrent.TimeoutException: Timeout after waiting for 5000 ms.
2019/11/25 13:16:58 - Kafka producer.0 - at org.pentaho.big.data.kettle.plugins.kafka.KafkaProducerOutput.processRow(KafkaProducerOutput.java:123)
2019/11/25 13:16:58 - Kafka producer.0 - at org.pentaho.di.trans.step.RunThread.run(RunThread.java:62)
2019/11/25 13:16:58 - Kafka producer.0 - at java.lang.Thread.run(Thread.java:748)
2019/11/25 13:16:58 - Kafka producer.0 - Caused by: java.util.concurrent.TimeoutException: Timeout after waiting for 5000 ms.
2019/11/25 13:16:58 - Kafka producer.0 - at org.apache.kafka.clients.producer.internals.FutureRecordMetadata.get(FutureRecordMetadata.java:64)
2019/11/25 13:16:58 - Kafka producer.0 - at org.apache.kafka.clients.producer.internals.FutureRecordMetadata.get(FutureRecordMetadata.java:25)
2019/11/25 13:16:58 - Kafka producer.0 - at org.pentaho.big.data.kettle.plugins.kafka.KafkaProducerOutput.processRow(KafkaProducerOutput.java:119)
2019/11/25 13:16:58 - Kafka producer.0 - ... 2 more
2019/11/25 13:17:23 - Kafka producer.0 - Procesamiento finalizado (I=0, O=0, R=1, W=0, U=0, E=1)
2019/11/25 13:17:23 - Kafka - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Errores detectados!
2019/11/25 13:17:23 - Spoon - La transformaci�n ha finalizado!!
2019/11/25 13:17:23 - Kafka - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Errores detectados!
2019/11/25 13:17:23 - Kafka - ERROR (version 8.3.0.0-371, build 8.3.0.0-371 from 2019-06-11 11.09.08 by buildguy) : Errores detectados!
2019/11/25 13:17:23 - Kafka - Transformaci�n detectada
2019/11/25 13:17:23 - Kafka - Transformaci�n est� matando los otros pasos!
The text was updated successfully, but these errors were encountered: