All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.snowflake.kafka.connector.internal.streaming.TopicPartitionChannelInsertionException Maven / Gradle / Ivy

There is a newer version: 2.4.1
Show newest version
package com.snowflake.kafka.connector.internal.streaming;

/**
 * Class for exceptions that occur while interacting with Snowflake through Snowpipe Streaming.
 *
 * 

Please note: This exception is translated from SFException when Client SDK determines this is * an invalid insert Operation. (For instance, clientSequencer is bumped up, but we are still * calling from older clientSequencer number) * *

Use this exception when a particular channel (Topic Partition) fails to insert Rows into * Snowflake Table, in this case we will reopen the channel and try to insert same rows again. * *

(Note: This exception is not when Streaming Snowpipe API returns error in its response) */ public class TopicPartitionChannelInsertionException extends RuntimeException { public TopicPartitionChannelInsertionException(String msg, Throwable t) { super(msg, t); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy