I'm downloading a huge csv file from Azure blob and I want to transform the data by adding an new column and then uploading the transformed csv file to another location.
Since it is a huge file with around 42 columns the application fails or restarts when trying to transform.
Can someone suggest how can I achieve this use-case?
Input in csv
col1,col2,col3....col41 10,23,asds....29 34,83,hdkd....57 so on
Expected Output in csv
NewCol,col1,col2,col3.....col41 1023,10,23,asda......29
3483,34,83,hdkd......57 so on
Thanks in advance
dw-buffer-index-5.tmpis being GCed but is still open. It is going to be closed to avoid tmp leaks." and the application gets restarted. As mentioned I have 41 columns. - user12277274