Hi,
Just stumbled across Infobright and am really interested to see if if can replace my MyISAM based database. But at the moment I’m having problems trying to load some test data.
I am trying to load a very large datafile (~25GB).
My table is
CREATE TABLE `ifInOctets` (
`iid` mediumint(9) NOT NULL,
`dtime` datetime NOT NULL,
`rate` bigint(20) NOT NULL,
`counter` bigint(20) NOT NULL
) ENGINE=BRIGHTHOUSE DEFAULT CHARSET=ascii COLLATE=ascii_bin
and I’m loading with
load data infile '/home/griffa10/ifInOctets.dmp.1' into table ifInOctets fields terminated by '\t';
And I get the error
ERROR 2 (HY000): Wrong data or column definition. Row: 7474146, field: 3.
However, if I load a file with a single row in it and then retry the larger file - it errors on a different line
ERROR 2 (HY000): Wrong data or column definition. Row: 7483133, field: 3.
Which suggests to me that the problem is not with the data, at least not a specific line.
Would be grateful for any suggestions.
RHEL 5.3 x86_64, 2 x Intel E5450, 8GB RAM.
ServerMainHeapSize=3000
ServerCompressedHeapSize=400
LoaderMainHeapSize=400
Thanks,
Alan
