Hi Matt,

Thanks for your input, I can see ES5 processor in NiFi1.1.0. 
I have one more doubt. I am using a custom processor using Tika where I am
detecting the file type first then getting the file content.
The below code snippet is working fine

String fileType = tika.detect(inputStream);                             
 inputStream = new FileInputStream(new File("filepath"));    
pdfparser.parse(inputStream, handler, metadata, pcontext);      

But the below code snippet is not working properly
 
 String fileType = tika.detect(inputStream);                        
pdfparser.parse(inputStream, handler, metadata, pcontext);      

The inputStream I am getting from GetFile processor. I am wondering why
should again need to create InputStream object again to parse the content.

Regards,
Shankha 



--
View this message in context: 
http://apache-nifi-developer-list.39713.n7.nabble.com/NiFi-PutElasticsearch-Processor-tp14733p14879.html
Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.

Reply via email to