For the following schema
table t1 (
c1 int not null,
c2 int not null,
primary key (c1,c2)
);
would it be better (i.e. faster) to import data from file using --replace or --ignore?
let's assume that the vast majority (99%) of rows to be imported are new rows and the table has billions of rows to start with (before the import).
i am open to any storage engine if it makes a big difference.
Thanks.
table t1 (
c1 int not null,
c2 int not null,
primary key (c1,c2)
);
would it be better (i.e. faster) to import data from file using --replace or --ignore?
let's assume that the vast majority (99%) of rows to be imported are new rows and the table has billions of rows to start with (before the import).
i am open to any storage engine if it makes a big difference.
Thanks.
Comment