Transactions in ICS
Summary
Transactions in ICSContent
Hi,
I have following scenario:
1) Multiple files come and sit in a FTP directory
2) List all files and read them one by one.
3) For each file I need to call REST api.
However REST api is failing with timeout for files having records > 1000. So for that I did below
3) a) For each large file --> divide it into chunks
b) for each chunk call REST api.
Requirements: 1) Even if the processing of one file fails , processing of others should continue.
2) If processing of chunks with in the file fails then they should be all comiited or rolledback.
1