I have a problem with the performance of CSV import and I assume it generate INSERT statement for every record so it will be 8000 statement if you have 8000 records in csv file.
Can we use bulk_insert method instead so there will be always only one INSERT statement which should reduce the performance significantly ?

