I am working on about 1GB incremental file and I want to search for a particular pattern. Currently I am using Java Regular expressions, do you have any idea how can I do this faster?

link|improve this question

2  
Sounds like this should be I/O-bound. How fast does a program that simply reads (and discards) the contents of the file run? Regular expressions should be able to approach the same speed, or else something is going wrong (like buffering). If simply reading the file is too slow for your purposes, then you need to consider a different approach (c.f. the discussion of Lucene below). – Todd Owen Jun 6 '11 at 3:12
Can you show the pattern and a bit of the file. Maybe the expression is slow because it is not optimal. Does your program load the entire contents of the file into a string to then run the regex? Is that the slow part? – agent-j Jun 10 '11 at 12:10
feedback

4 Answers

up vote 7 down vote accepted
+50

Basically what you need is a state machine that can process a stream. This stream being bounded to the file... Each time the file grow, you read what has been appended to it (like the tail linux command that append to standard output the lines added to the file).

If you need to stop/restart your analyser, you can either just store somewhere the start position (that can depend of the window you need for your pattern matching) and restart from that. Or you can restart from scratch.

That is for the "increasing file" part of the problem.

For the best way to process the content, it depend of what you really need, what kind of data and pattern you want to apply. Regular expression are maybe the best solution: flexible, fast and relatively convenient.

From my understanding, Lucene would be good if you wanted to do document search matching for some natural language content. This would be a poor choice to match all dates or all line with a specific property. Also because Lucene first make an index of the document... This would help only for really heavy processing as indexing in the first place take time.

link|improve this answer
feedback

Sounds like a job for Apache Lucene.

You probably will have to rethink your searching strategy, but this library is made for doing things like this and adding indexes incrementally.

It works by building reverse indexes of your data (documents in Lucene parlance), and then quickly checking in the reverse indexes for which documents have parts of your pattern.

You can store metadata with the document indexes so you might able to not having to consult the big file in the majority of use-cases.

link|improve this answer
The file I am parsing is growing by time. Is possible to do indexing. I just found that regular expression are slower. I have to use something like Thomson NFA. – Kamahire Oct 21 '10 at 15:20
Thanks Peter for prompt reply. How can use Lucern for the same? Can you give me some sample. – Kamahire Oct 21 '10 at 15:21
Lucene is good for processing textual data with natural language inside. Depending of the format of your file and of your pattern, this might not be the best solution. – Nicolas Bousquet Jun 5 '11 at 13:14
Lucene is not only for textual data. You can add additional fields to the documents. The reverse index works just as good on "real" data as on natural language. – Peter Tillemans Jun 8 '11 at 19:54
feedback

You can try using the Pattern and Matcher classes to search with compiled expressions.

See http://download.oracle.com/javase/1.4.2/docs/api/java/util/regex/Pattern.html and http://download.oracle.com/javase/tutorial/essential/regex/

or use your favorite search engine to search on the terms:

java regular expression optimization or

java regular expression performance

link|improve this answer
I have optimized the the regular expressions. I have removed the backtracking. – Kamahire Oct 21 '10 at 15:35
1  
Did that make it any faster? – Jay Elston Oct 30 '10 at 0:27
feedback

I think it depends on:

  • the structure of your data (line oriented?)
  • the complexity of the match
  • the speed at which the data file is growing

If your data is line oriented (or block oriented) and a match must occur within such a unit you can match until the last complete block, and store the file position of that endpoint. The next scan should start at that endpoint (possibly using RandomAccessFile.seek()).

This particularly helps if the data isn't growing all that fast.

If your match is highly complex but has a distinctive fixed text, and the pattern doesn't occur all that often you may be faster by a String.contains() and only if that's true apply the pattern. As patterns tend to be highly optimized it's definitely not guaranteed to be faster.

You may even think of replacing the regex by hand-writing a parser, possibly based on StringTokenizer or some such. That's definitely a lot of work to get it right, but it would allow you to pass some extra intelligence about the data into the parser, allowing it to fail fast. This would only be a good option if you really know a lot about the data that you can't encode in a pattern.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.