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
SqsSinkConnectorTask lack proper error handling when the sending to SQS fails. The task doesn't fail or retry upon an error. It just logs the error and keeps going.
You can either send as a batch the messages to keep the throughput or commit per everything single message slowing the system down.
Inspired by this, we are doing something similar in Elixir lang, and we are facing some issues due to SQS message size and figuring out how to tune the batch size.
SqsSinkConnectorTask lack proper error handling when the sending to SQS fails. The task doesn't fail or retry upon an error. It just logs the error and keeps going.
https://github.com/Nordstrom/kafka-connect-sqs/blob/master/src/main/java/com/nordstrom/kafka/connect/sqs/SqsSinkConnectorTask.java#L91
The text was updated successfully, but these errors were encountered: