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 case where in I need to read a flat file with close to 100000 logical records. Each logical record is comprised of nx128 character parts. ie, Type A: 3x128, Type B : 4-5 X 128 etc where maximum possible n is 6.

Application has to read the file and process the records. The problem is 'n' can be determined only when we read the first 52 characters of each nx128 partition.

Could you please suggest any design paterns which I can re-use or any efficient algorithms to perform this ?

Note : 1. Performance is an important criteria as application need to process thousands of file like this everyday. 2. The data is not separated by lines. Its a long string like pattern

share|improve this question
Do you need someone to do the work for you? – Marcelo Jun 24 '11 at 16:53
Idem. Reading records and processing them ...I don't see the problem – arnaud Jun 24 '11 at 16:58
problem is I cannot read a fixed width , say nX128 straight away. First I need to read 52 characters. Then determine what 'n' is and then read nX128 characters. This seems to be a VERY BAD design to me. – nobody Jun 24 '11 at 17:02
Very bad? Why? What is very bad is to read small chunks of data from a file one after another. A buffered reader/stream is obviously to be used. There, reading the first 52 characters, then the remaining of the chunk will not result in IO calls and make no difference whatsoever in performance. – arnaud Jun 24 '11 at 17:10

2 Answers

up vote 1 down vote accepted

You could adopt a master-worker (or master-slave) pattern where in a master thread would be responsible for reading the first 52 characters of data to determine the length of the record. The master may then defer the actual work of reading and processing the records to a worker thread, and move on to the next record again to read only the first 52 characters. Each worker would be responsible for (re)opening the file and processing a particular range of characters; the worker needs to be provided with this information.

Since, I haven't seen the structure of the file, I can only post a few possible limitations or concerns for an implementer to think about:

  • An effective and performant implementation would rely on the ability to provide a worker thread with file pointers and the length of the data that the worker should deal with. In simpler words, the worker thread is expected to actually read the file in a random-access mode, instead of having the master do the reading (which is serial). If you cannot perform random-access, there isn't a lot you can do to optimize the master-worker pattern.
  • Spawning of new worker threads is not recommended. Use a thread pool. This would also mean that you can limit the number of open file descriptors based on the size of the pool.
  • Queue up further requests to process the character ranges in case the pool is exhausted. That way, the master can continue doing its work until the last record has been read.
  • Dependencies across records will require you to serialize processing the records. If each record can be processed on it's own thread, without requiring results from other threads to be made available, then you should not encounter any difficult in adopting this approach.
share|improve this answer
Thanks a lot for the idea. This is the description of file application has to read link. Excerpts from page 16 of pdf. – nobody Jun 24 '11 at 17:32
I've read only the description of the header structure of that document, and it seems that you might be able to use the master-worker pattern. However, I do not know the contextual semantics of a couple of columns, like output sequence number. Also, I'm unsure of the nature of processing that you are doing. Since this is a clearing network file format, I would assume that you would also have to prepare an output file or something similar to acknowledge processing of the file. You'll have to take the mechanism for preparation of that file into account as well. – Vineet Reynolds Jun 24 '11 at 17:42
Yes Vineet. Master Worker pattern looks so promising to me. Thanks a lot for the effort. – nobody Jun 24 '11 at 17:49
@nobody, you're welcome. As an aside, you might find using FileChannel useful. – Vineet Reynolds Jun 24 '11 at 17:52

Unless you can change the format you have to work around it.

You can create an index for each file, but you would have to read it once to build the index (but it would save having to do this more than once)

share|improve this answer

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.