I am writing a plugin for nutch which parses text and creates a new field depending on text. For this the plugin which I am writing implements IndexingFilter. I am following the tutorial as in here (which is similar to that in nutch wiki). I have followed exactly as it is mentioned and I am successfully able to build the plugin. However I do not see the new index being added. Well I am beginner so I am not sure if I am looking at right place.
I did normal crawling using the command
bin/nutch crawl urls -dir crawl -depth 3 -topN 5
And then I checked in crawldb and segment using command
bin/nutch readdb crawl/crawldb/ -dump crawlContent
bin/nutch readseg -dump crawl/segments/* segmentAllContent
I do not see the new field added here. Am I doing it right? Or is there any command I need to run. Thanks in advance.
Code:
I copied the directory structure of urlmeta plugin and made couple of changes.
plugin.xml:
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="myPlugin" name="Add Field to Index"
version="1.0.0" provider-name="your name">
<runtime>
<library name="myPlugin.jar">
<export name="*"/>
</library>
</runtime>
<extension id="org.apache.nutch.indexer.myPlugin"
name="Add Field to Index"
point="org.apache.nutch.indexer.IndexingFilter">
<implementation id="myPlugin"
class="org.apache.nutch.indexer.AddField"/>
</extension>
</plugin>
build.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project name="myPlugin" default="jar">
<import file="../build-plugin.xml"/>
</project>
And other code is same as in the link mentioned.