Techniques for writing critical text data - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T11:13:44Z http://stackoverflow.com/feeds/question/292717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data 2 Techniques for writing critical text data Brendan 2008-11-15T16:19:01Z 2008-11-17T18:09:24Z <p>We take text/csv like data over long periods (~days) from costly experiments and so file corruption is to be avoided at all costs.</p> <p>Recently, a file was copied from the Explorer in XP whilst the experiment was in progress and the data was partially lost, presumably due to multiple access conflict. </p> <p>What are some good techniques to avoid such loss? - We are using Delphi on Windows XP systems.</p> <p>Some ideas we came up with are listed below - we'd welcome comments as well as your own input.</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/292718#292718 -1 Answer by Brendan for Techniques for writing critical text data Brendan 2008-11-15T16:19:27Z 2008-11-15T16:19:27Z <p>Write data to a buffer file in an obscure directory and copy the data to the 'public' data file periodically (every 10 points for instance), thereby reducing writes and also providing a backup</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/292719#292719 -1 Answer by Brendan for Techniques for writing critical text data Brendan 2008-11-15T16:19:51Z 2008-11-15T16:19:51Z <p>Write data points discretely, i.e. open and close the filehandle for every data point write - this reduces the amount of time the file is being accessed provided the time between data points is low</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/292720#292720 0 Answer by Brendan for Techniques for writing critical text data Brendan 2008-11-15T16:20:12Z 2008-11-15T16:20:12Z <p>If a write fails, cache the result for a later write - so if a file is opened externally the data is still stored internally, or could even be stored to a disk</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/292721#292721 8 Answer by Brendan for Techniques for writing critical text data Brendan 2008-11-15T16:20:31Z 2008-11-16T05:20:26Z <p>Use a database as a secondary data storage mechanism and take advantage of the atomic transaction mechanisms</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/292733#292733 4 Answer by stukelly for Techniques for writing critical text data stukelly 2008-11-15T16:33:51Z 2008-11-15T16:33:51Z <p>How about splitting the large file into separate files, one for each day.</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/293711#293711 0 Answer by PatrickvL for Techniques for writing critical text data PatrickvL 2008-11-16T09:03:57Z 2008-11-16T09:42:45Z <p>I think what you're looking for is the Win32 <a href="http://msdn.microsoft.com/en-us/library/aa363858(VS.85).aspx" rel="nofollow">CreateFile</a> API, with these flags:</p> <p>FILE_FLAG_WRITE_THROUGH : Write operations will not go through any intermediate cache, they will go directly to disk.</p> <p>FILE_FLAG_NO_BUFFERING : The file or device is being opened with no system caching for data reads and writes. This flag does not affect hard disk caching or memory mapped files. There are strict requirements for successfully working with files opened with CreateFile using the FILE_FLAG_NO_BUFFERING flag, for details see File Buffering.</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/293932#293932 1 Answer by Stephan Eggermont for Techniques for writing critical text data Stephan Eggermont 2008-11-16T14:43:57Z 2008-11-16T14:43:57Z <p>If these machines are on a network: send a HTTP post with the logging data to a webserver. (sending UDP packets would be even simpler).</p> <p>Make sure you only copy old data. If you have a timestamp on the filename with a 1 hour resolution, you can safely copy the data older than 1 hour.</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/296370#296370 0 Answer by Fabricio Araujo for Techniques for writing critical text data Fabricio Araujo 2008-11-17T18:09:24Z 2008-11-17T18:09:24Z <p>Each experiment much use a 'work' file and a 'done' file. Work file is opened exclusively and done file copied to a place on the network. A application on the receiving machine would feed that files into a database. If explorer try to move or copy the work file, it will receive a 'Access denied' error.</p> <p>'Work' file would become 'done' after a certain period (say, 6/12/24 hours or what ever period). So it create another work file (the name must contain the timestamp) and send the 'done' through the network ( or a human can do that, what is you are doing actually if I understand your text correctly).</p> <p>Copying a file while in use is asking for it being corrupted. </p>