I am trying to parse a CSV in Apps Script which has 52 columns and 126543 rows. Data size is 72 MB.
After parsing it using Utilities.parseCsv method, the size of the data is 95104 however the expectation is that it should be 126543 i.e. same as the initial data size.
After removing few columns from the CSV and again repeating the above step, the size of the data after parsing increased but it still did not match the initial data size.
Is there a size limitation with Utilities.parseCsv? I could not find any documentation referring to this limitation if it is true.
Kindly put some light on this and is there any alternative solution which does not have size constraints?