Hi community,
maybe this is useful for someone – I searched and tested unsuccessfully for hours...
I wanted to import a large CSV with line-breaks in some Fields (field type "Text") and got errors always on the same lines - no matter how i tried (e.g. escape quotes and double quotes or tried with other enclosures, etc).
It turned out that in CsvBulkLoader large CSV file are splittet into chunks (default value is 1000 lines). Of course this resulted in errors, because the file wasn't splitted at the "real CSV line endings" but somewhere in my multiline-text-fields.
Solution:
In config.yml I increased this value dramatically and the error was gone:
CsvBulkLoader:
lines: 5000
or in my case:
ProductCsvBulkLoader:
lines: 90000