Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am crawling our large website(s) with nutch and then indexing with solr and the results a pretty good. However, there are several menu structures across the site that index and spoil the results of a query.

Each of these menus is clearly defined in a DIV so <div id="RHBOX"> ... </div> or <div id="calendar"> ...</div> and several others.

I need to, at some point, delete the content in these DIVS.

I am guessing that the right place is during indexing by solr but cannot work out how.

A pattern would look something like (<div id="calendar">).*?(<\/div>) but i cannot get that to work in <tokenizer class="solr.PatternTokenizerFactory" pattern="(<div id="calendar">).*?(<\/div>)" /> and I am not really sure where to put it in schema.xml.

When I do put that pattern in schema.xml does not parse.

share|improve this question

3 Answers

If you want to do that I believe you should write a customized parser in nutch, such that the data to index does not contain the data. Basically after parsing the text data is raw text without any structure.

share|improve this answer
That is incorrect. Solr parses the raw html that nutch has crawled. Nutch also parse it into its own index. – StackAnglo Apr 12 '11 at 7:04
OK thx, I didn't realize SOLR was parsing the raw html. – millebii Apr 12 '11 at 19:36
1  
That's not totally true. Solr parses the Lucene Document objects that nutch creates. Part of the data is the raw HTML, but there are other properties like title and contentType that nutch hands to Solr. Solr doesn't parse it out. – mlathe Sep 26 '11 at 17:08

I think you have a few choices:

  1. extend the Nutch HTML parser, and add logic to strip the header out. (There might be better places to do this, like when you have the raw data but before the DOM is parsed)
  2. make your site smart enough to not draw the header when nutch is crawling. This is pretty easy to do by just checking the User-Agent value in the request header. You might need to do a better job of seeding your crawl since the links in the header won't be there to help nutch find the other pages
  3. Somehow get Solr to remove the header for the nutch data. I'm not sure how you'd do this, and I think this means you lose some of the Nutch/Solr synergies.
  4. Somehow edit the Nutch index (just a lucene index). In theory, you could just walk through all documents in the index and do a trimming on the correct property of each Document.

I would think the easiest way to do this, is to do #2 if you have a consistent way of drawing the header (ie a skin or a common include). Then perhaps #1 and #4. I think #3 would be the hardest, but I might be wrong.

share|improve this answer

Here is a patch for SOLR that you can place in your indexing config to ignore the contents of tags you configure. It will only work with XML, though, so if you can tidy your HTML or you know that it is XHTML, then this would work, but it won't work with just any random HTML.

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.