Class RabbitIndexWriter
- java.lang.Object
-
- org.apache.nutch.indexwriter.rabbit.RabbitIndexWriter
-
- All Implemented Interfaces:
Configurable
,IndexWriter
,Pluggable
public class RabbitIndexWriter extends Object implements IndexWriter
-
-
Field Summary
-
Fields inherited from interface org.apache.nutch.indexer.IndexWriter
X_POINT_ID
-
-
Constructor Summary
Constructors Constructor Description RabbitIndexWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
commit()
void
delete(String url)
Map<String,Map.Entry<String,Object>>
describe()
ReturnsMap
with the specific parameters the IndexWriter instance can take.Configuration
getConf()
void
open(Configuration conf, String name)
void
open(IndexWriterParams parameters)
Initializes the internal variables from a given index writer configuration.void
setConf(Configuration conf)
void
update(NutchDocument doc)
void
write(NutchDocument doc)
-
-
-
Method Detail
-
getConf
public Configuration getConf()
- Specified by:
getConf
in interfaceConfigurable
-
setConf
public void setConf(Configuration conf)
- Specified by:
setConf
in interfaceConfigurable
-
open
public void open(Configuration conf, String name) throws IOException
- Specified by:
open
in interfaceIndexWriter
- Parameters:
conf
- Nutch configurationname
- target name of theIndexWriter
to be opened- Throws:
IOException
- Some exception thrown by some writer.
-
open
public void open(IndexWriterParams parameters) throws IOException
Initializes the internal variables from a given index writer configuration.- Specified by:
open
in interfaceIndexWriter
- Parameters:
parameters
- Params from the index writer configuration.- Throws:
IOException
- Some exception thrown by writer.
-
write
public void write(NutchDocument doc) throws IOException
- Specified by:
write
in interfaceIndexWriter
- Throws:
IOException
-
delete
public void delete(String url) throws IOException
- Specified by:
delete
in interfaceIndexWriter
- Throws:
IOException
-
update
public void update(NutchDocument doc) throws IOException
- Specified by:
update
in interfaceIndexWriter
- Throws:
IOException
-
commit
public void commit() throws IOException
- Specified by:
commit
in interfaceIndexWriter
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceIndexWriter
- Throws:
IOException
-
-