in reply to Re^7: Working with large amount of data
in thread Working with large amount of data
But splitting directly into 100 files may be a horrible idea for the simple reason that disk drives are typically able to stream data at high rates to a fixed number of locations. Like 4 or 16
Are you completely sure about that?
AFAIK the OS and the file system layer should mitigate any hardware limitation like that. Writes are cached and reordered before sending them to the hardware, so it shouldn't be any difference between writing to a file or to a thousand...
Well, unless you have your file system configured to commit everything immediately, but this is not common because of the huge performance penalty it imposes!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: Working with large amount of data
by tilly (Archbishop) on Sep 22, 2009 at 15:13 UTC |