Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a .csv file with 10 billion rows. I want to check that each row is unique. Is there an easy way to do this? I was thinking perhaps importing to mysql would allow me to find out uniqueness quickly. How can I upload this huge file to mysql? I have already tried row-by-row insert statements and also the 'LOAD DATA INFILE' command but both failed.

Thanks

share|improve this question
2  
was there an error that caused them to fail? – John Kane Apr 20 '11 at 19:18
Is MySQL really designed to deal with 10 billion rows? Most databases require some serious tweaks with placement of indexes, db files, memory, etc. to manage a table that large. – Thomas Apr 20 '11 at 19:27
Does each row have a field that should act as a unique key, or do you need to compare the entire row? – DNA Apr 20 '11 at 20:10
@Thomas The Insert row by row method 'failed' because it would have taken almost a year to populate the database. The LOAD DATA INFILE method failed because the load data process ran over night and stopped without inserting a single row – Tucker Apr 20 '11 at 21:20
2  
@Tucker. Wow. Assuming a bigint PK, your table will be in the neighborhood of 480 GB in size when all is said and done. Whatever machine on which you load this thing isn't going to be a happy camper and even less happy when you try to run analyses against it. – Thomas Apr 20 '11 at 22:20
show 5 more comments

5 Answers

I wouldn't use a database for this purpose, unless it needed to end up in the database eventually. Assuming you have the same formatting for each row (so that you don't have "8.230" and "8.23", or extra spaces on start/end of lines of equal values), use a few textutils included with most POSIX environments (Linux, Mac OS X), or available for Windows via GnuWIn32 coreutils.

Here is the sequence of steps to do from your system shell. First, sort the file (this step is required):

sort ten.csv > ten_sorted.csv

Then find unique rows from sorted data:

uniq ten_sorted.csv > ten_uniq.csv

Now you can check to see how many rows there are in the final file:

wc ten_uniq.csv
share|improve this answer

Does the data have a unique identifier? Have this column as primary key in your mysql table and when you go to import the data, mysql should throw an error if you have duplicates.

As for how to go about doing it..just read in the file row by row and do an insert on each row.

share|improve this answer

If you are importing from Excel or such other programs. See here for how to cleanse the csv file before importing it into MySQL. Regarding the unique row, as long as your table schema is right, MySQL should be able to take care of it.

EDIT:

Whether the source is Excel or not, LOAD DATA LOCAL INFILE appears to be the way to go.

10bn rows, and LOAD DATA LOCAL gives you error? Are you sure there is no problem with the csv file?

share|improve this answer
3  
Excel with 10 billion rows available-which version of Excel are you using? – DotNetHacker Apr 20 '11 at 20:08
1  
CSV doesn't mean Excel! – Damien Apr 20 '11 at 20:10

You have to truncate your database into separate small bite size chunks. Use Big Dump.

http://www.ozerov.de/bigdump.php

share|improve this answer

If you do have 10 billion rows then you will struggle working with this data.

You would need to look at partitioning your database (ref here: about mysql partitioning)

However, even with that large number you would be requiring some serious hardware to cut through the work involved there.

Also, what would you do if a row was found to be nonunique? Would you want to continue importing the data? If you import the data would you import the identical row or flag it as a duplicate? Would you stop processing.

share|improve this answer
I would like to load all the data into the database, and run some queries to check for uniqueness on subsets of the data. – Tucker Apr 20 '11 at 20:45
if you have a MS SQL 2005 or later version available I would look into using SSIS you would be able to use the file import functionality within that to load the data into tables. I suggest you set a couple of indexes on the table for the columns you will be querying on before the import though. – DotNetHacker Apr 20 '11 at 23:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.