I have a large number of small files to be searched. I have been looking for a good de-facto multi-threaded version of grep but could not find anything. How can I improve my usage of grep? As of now I am doing this:
grep -R "string" >> Strings
|
|
|
If you have xargs installed on a multi-core processor, you can benefit from the following just in case someone is interested. Environment:
Tests: 1. Find the necessary files, pipe them to xargs and tell it to execute 8 instances.
2. Find the necessary files, pipe them to xargs and tell it to execute 4 instances.
3. Suggested by @Stephen: Find the necessary files and use + instead of xargs
4. Regular recursive grep.
For my purposes, the first command worked just fine. |
|||||||||||||||
|
|
Wondering why
Seems it will be more efficient to give each grep that's forked to process on more than one file (I assume -n1 will give only one file name in argv for the grep) -- as I see it, we should be able to give the highest n possible on the system (based on |
||||
|
|
GREP works by searching individual files, ...fast.... But when you have a huge number of files, this still takes a lot of computational energy and time. The OP says he has 35Gb of data to process in 500K+ files; with all 8 cores going and 32Gb of RAM it takes 3 minutes per query. A better way than grep at this scale is to pre-index the source code base, and search the index using a query langauges. Files not containing interesting stuff simply aren't examined. Our Source Code Search Engine does this by tearing each file into lexemes according to its language types, and indexing the lexemes. The query language is in terms of language atoms and constraints (e.g., I=foo* finds all identifiers starting with "foo"). Because the queries are in terms of langauge elements you can easily ignore whitespace and comments and thus formatting doesn't affect your search. This also makes it easier to code complex queries (minimizing the number of times you have to issue a search), and minimizes the number of false positive hits, which is fundamentally important if you have a large source code base. The hits are displayed in a graphical hit window, and actual file content can be seen directly by clicking a hit. The SearchEngine has been used on systems of 2,000,000 files with a few minutes response time using only 1 CPU with only 8Gb of RAM; grep applied directly in that case was taking 45+ minutes. The Search Engine will grep, too, if you insist, but you get slower answers. |
||||
|
|