csv import - CSV Parser found a row with an invalid length -


i trying import large csv file (1 million records) in exasol using following command:

import ml.lr_source local csv file 'file.csv'  encoding = 'utf-8'  row separator = 'crlf'  column separator = ','  skip = 1 reject limit 0; 

import failing following error:

  [42636] java.sql.sqlexception: etl-2111: csv parser found row invalid length (more 67108864 bytes) in file '2580bc4e-8dce-49c3-827b-b66379c36312' (session: 1575897051225203506) while executing 'import ml.lr_source csv @ 'https://27.1.0.10:43941' file '2580bc4e-8dce-49c3-827b-b66379c36312' encoding = 'utf-8' row separator = 'crlf' column separator = ',' skip = 1 reject limit 0;'; 04509 java.sql.sqlexception: java.net.socketexception: software caused connection abort: socket write error 

note able import file 500k records. , individual record length in 1 million record file , 500k file same have replicated same data of 500k file in order create 1 million records file.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -