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
We'd like to have a JDBC source fail upon the first SQL exception by setting query.retry.attempts=0 as we are running non-incremental mode that delivers the output of a stored procedure to the connector. Configuring for 0 retries, it does not seem to respect this setting and we are getting messages like: ERROR [sqlserver-source|task-0] SQL exception while running query for table: BulkTableQuerier{table='null', query='Exec dbo.listCustomers', topicPrefix='sqlserver-customers2'}, java.sql.SQLException: The record does not exist.. Attempting retry 3 of 0 attempts. (io.confluent.connect.jdbc.source.JdbcSourceTask:455).
Suggestion: Add this feature either by setting maxRetriesPerQuerier >= 0 in JdbcSourceTask or by adding an additional fail fast / no retries property to the configuration.
The text was updated successfully, but these errors were encountered:
We'd like to have a JDBC source fail upon the first SQL exception by setting
query.retry.attempts=0
as we are running non-incremental mode that delivers the output of a stored procedure to the connector. Configuring for 0 retries, it does not seem to respect this setting and we are getting messages like:ERROR [sqlserver-source|task-0] SQL exception while running query for table: BulkTableQuerier{table='null', query='Exec dbo.listCustomers', topicPrefix='sqlserver-customers2'}, java.sql.SQLException: The record does not exist.. Attempting retry 3 of 0 attempts. (io.confluent.connect.jdbc.source.JdbcSourceTask:455).
Suggestion: Add this feature either by setting
maxRetriesPerQuerier >= 0
in JdbcSourceTask or by adding an additional fail fast / no retries property to the configuration.The text was updated successfully, but these errors were encountered: