BJ Freeman wrote: > one of my smaller import files (8mb) is taking forever to be read in and > there is no output. > I am seeing the memory rail against the max setting. > got this error.
The datafile set of classes is very broken for large files. It has a List<Record>, which means it will copy the entire file into memory before doing anything with it. The datafile code is not designed to handle large files. I consider this a bug that needs to be fixed. Checking...
