in reply to Re^2: Multithreaded Script CPU Usage
in thread Multithreaded Script CPU Usage
But after solving all the scanning performance issues you are finally bound by the insert limit of your database. 80 million records are very huge. 1000 inserts per second would be my estimate for mysql on a desktop. That is 22 hours in your case. But do your own benchmark for multiple and faster CPUs and disks.
Back to the drawing board you need to eliminate the overhead of the database. We don't know anything about use cases of your database output. When it is just finding a file once per week, I'd cat the local output files together and grep the 800 MB text file at disk speed in less than 10 seconds. In more advanced cases Perl regexps should have lower overhead than SQL on queries and no insert limit bottleneck.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Multithreaded Script CPU Usage
by Zenshai (Sexton) on Sep 03, 2008 at 00:59 UTC |