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 trying to read the content data inside the segment folder. I think the content data file is written in a custom format

I experimented with nutch's Content class, but it does not recognize the format.

share|improve this question

2 Answers

//Setup the parser
Configuration conf = NutchConfiguration.create();
Options opts = new Options();
GenericOptionsParser parser = new GenericOptionsParser(conf, opts, argv);
String[] remainingArgs = parser.getRemainingArgs();
FileSystem fs = FileSystem.get(conf);
String segment = remainingArgs[0];
Path file = new Path(dir, Content.DIR_NAME + "/part-00000/data");
SequenceFile.Reader reader = new SequenceFile.Reader(fs, file, conf);
Text key = new Text();
Content content = new Content();
//Loop through sequence files
while (reader.next(key, content)) {
try {
System.out.write(content.getContent(), 0, content.getContent().length);
}
catch (Exception e){
}
share|improve this answer
thank you for the above! any method that would help retrieve a given file type (docx, pdf, etc) only. – change Apr 6 at 17:20
String contentType = content.getContentType(); if(!contentType.equalsIgnoreCase("application/pdf")) { – kitwalker Apr 6 at 17:29
awesome! thanks! also what are the arguments that argv represents and the order? – change Apr 7 at 1:10
the initial options are hadoop specific(detailed here:hadoop.apache.org/docs/stable/api/org/apache/hadoop/util/…). you can leave them out if you want. I just have one argument without any prefixes which is the crawl directory path. – kitwalker Apr 7 at 4:45
up vote 0 down vote accepted
org.apache.nutch.segment.SegmentReader 

has a map reduce implementation that reads content data in the segment directory.

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.