Hii @gowrinadh , Assuming you have single source file with 10000 record.
You can use the whole file data format to transfer entire files from an origin system to a destination system ( i.e S3 to S3 in your case) . With the whole file data format, you can transfer any type of file. and this will result in one file as you desired.
Please configure Whole File data format at both origin and destination.
@Rishi When I use the whole file format, it is not allowing to use the individual records. I need to read each record and make a call to the webservice using HTTP client Stage.
@Rishi When I use the whole file format, it is not allowing to use the individual records. I need to read each record and make a call to the webservice using HTTP client Stage.
Yes, with Whole File Data format you cannot modify individual record. I was assuming your pipeline like S3 → S3.
Other workaround I can think of :
- First writing to a local file( Local Fs) this will result in single file , then writing to S3 via Whole File.
@Rishi
Thanks for the reply, we decided to go with same approach.