I have huge JSON files in a folder approx 200 each of 300 mbs approx. I need to write Spring batch to read the files and process one by one.
Basically means read one file at a time then run the processor then run the writer then read next file, The file is basically customer data and activity dump, with each file containing several users data and many files. Like below
[{
"cutomerId":123,
"customerName":"bla babha",
"phoneNumber" : 5060974321,
..
,,
},{
"cutomerId":123,
"customerName":"bla babha",
"phoneNumber" : 5060974321,
..
..
}
]
Since I cant read all the files at one due to space issue.
Is this possible. what would be the configuration.
Please help.