Support to retry for normal stream load if it failed. Currently the retry for transaction stream load is not supported. The advantage of transaction load is to save memory usage. It splits data into batches, and release the memory for each batch after sending it to StarRocks. If support to retry, need to buffer all data in memory before the last batch success, and the memory usage will not be reduced. this will lose the advantage of transaction stream load
Checklist:
[ ] I have added test cases for my bug fix or my new feature
[ ] This pr will affect users' behaviors
[ ] This pr needs user documentation (for new or modified features or behaviors)
[ ] I have added documentation for my new feature or new function
What type of PR is this:
Which issues of this PR fixes :
Fixes #
Problem Summary(Required) :
Support to retry for normal stream load if it failed. Currently the retry for transaction stream load is not supported. The advantage of transaction load is to save memory usage. It splits data into batches, and release the memory for each batch after sending it to StarRocks. If support to retry, need to buffer all data in memory before the last batch success, and the memory usage will not be reduced. this will lose the advantage of transaction stream load
Checklist: