Break list into chunks from a list

0
Hi all, I am facing a issue in breaking the list. I have a list of values coming from the Json Import activity. I want to commit these list into Database. Since its huge, I want to break the list into smaller chucks like 1000(offset) before I commit it. I didnot see any option to break it as list operation.  Any one has exp in doing this? Thanks and Regards, Nirmal Kumar
asked
1 answers
0

Hi Nirmal Kumar,

If you’re receiving this file from some sort of other system, perhaps the source system could implement paging for you?

If not, I would look into using a custom java action to parse this file instead of the default JSON import action.  In the java action, you can parse the JSON as needed and commit in batches.

Thanks,

Conner

answered