Got a requirement to read and process log file incrementally. Any suggestions / ideas to do this in Java?
Need to consider all possible scenarios like file rollover, different logging formats, etc.
Thanks, Sudhanshu
|
|
You can take a look at Chainsaw |
|||||||||||
|
|
I'm trying to approach pretty much the same problem. It appears it is not as trivial as it might look at a first glance. You have to ignore the notion of EOF/EOS and you have to keep track of where in the log file you are. I think the best approach is to have a separate thread to read log file. I did a test with The only problem with this approach is the N-second wait. It would be far more accurate, to have a way to tell Java "block on |
|||||||
|
|
When I had this problem I found the answer here: http://www.informit.com/guides/content.aspx?g=java&seqNum=226 |
|||
|
|
|
Though its pretty late but just thought of writing the approach that I used to achieve this functionality. Let's say we start a job to read a file periodically, after every 5 min.
It becomes interesting for subsequent job runs.
So far so good, what if the file is rolled over?
That's it! You may need to put IF conditions at few places for some odd scenarios. One such scenario is when you are iterating through the files and if the file last modified time is exactly the same as the stored one, just reset the line count - so that it starts with the first line from the next/new file. Sample code for subsequent job runs: for(File file : files) { Any suggestions / comments / questions? |
|||
|
|