I used a json array and split it into multiple json files and did some operations on it.
Then converted each of these json files to parquet form and i wanted to upload each individual parquet file to S3.
Uploading a single json file or a json array was not an issue, but if i had (for example) 3 parquet files to be uploaded then, only 1 got uploaded into S3, thus the other 2 files are lost. Thus i am assuming PutS3Object processor is allowing the uploading of only 1 file at any given time (correct me if i am wrong)
That leaves me with two solutions:
1. Either somehow allow multiple files to be uploaded into S3
2. Or merge individual json files to one json array and then doing the conversion and then pushing it to S3
I would be grateful if anybody helps me with either of the solutions.
Thanks in advance.