kafka connect - jdbc sink sql exception

后端 未结 2 1440
半阙折子戏
半阙折子戏 2021-01-21 08:27

I am using the confluent community edition for a simple setup consisting a rest client calling the Kafka rest proxy and then pushing that data into an oracle database using the

相关标签:
2条回答
  • 2021-01-21 08:37

    Kafka Connect framework for Sink Connectors can only skip problematic records when exception is thrown during: - Convertion key or values (Converter:toConnectData(...)) - Transformation (Transformation::apply)

    For that you can use errors.tolerance property:

    "errors.tolerance": "all"
    

    There are some additional properties, for printing details regarding errors: errors.log.enable, errors.log.include.messages. Original answer: Apache Kafka JDBC Connector - SerializationException: Unknown magic byte

    If an exception is thrown during delivering messages Sink Task is killed. If you need to handle communication error (or others) with an external system, you have to add support to your connector

    Jdbc Connector, when SQLException is thrown makes retries but doesn't skip any records

    Number of retries and interval between them is managed by the following properties

    • max.retries default value 10
    • retry.backoff.ms default 3000
    0 讨论(0)
  • 2021-01-21 08:38

    The sink cannot currently ignore bad records, but you can manually skip them, using the kafka-consumer-groups tool:

    kafka-consumer-groups \
        --bootstrap-server kafka:29092 \
        --group connect-sink_postgres_foo_00 \
        --reset-offsets \
        --topic foo \
        --to-offset 2 \
        --execute
    

    For more info see here.

    0 讨论(0)
提交回复
热议问题