Hello @donaldo71,
This looks like SQL is getting the deadlock because of the many records in once.
You can try couple of this.
First, enable the retry option on the PutSql or PutdatabaseRacord processors.

If the retries helped previously, this could also help in your case.
Also, decrease the concurrency and batch sizes to try to decrease the SQL load.
Additionally, on the SQL side, if you can, use row versioning isolation to reduce locking:
ALTER DATABASE DBNAME SET READ_COMMITTED_SNAPSHOT ON;
Regards,
Andrés Fallas
--
Was your question answered? Please take some time to click on "Accept as Solution" below this post.
If you find a reply useful, say thanks by clicking on the thumbs-up button.