Hii Omar..I am following this tutorial https://github.com/DigitalPebble/behemoth/wiki/tutorial to configure the UIMA on Hadoop.. After launching the mvn , i am unale to find out the Build.xml and also */behemoth/modules file so i can't creat behemoth-.job , Could you help me out here
On Friday, 21 September 2012 21:27:53 UTC+5:30, Omar wrote:Hi,
I have a fully functional UIMA job that does simple annotation. I can successfully launch it via my local CAS GUI.
I have been trying to run the UIMA job on Hadoop using Apache Behemoth. I am wondering if someone has worked on this? The job runs successfully but in the hadoop output directory; there is no output from the UIMA job. I can see in the Hadoop job tracker output that the job completed successfully and it copied its input data to the final output directory.
Can someone point me to what could be going on here?
Thanks
Omar
--To view this discussion on the web, visit https://groups.google.com/d/msg/digitalpebble/-/4tMISM9aVUoJ.
You received this message because you are subscribed to the Google Groups "DigitalPebble" group.
To post to this group, send an email to digita...@googlegroups.com.
To unsubscribe from this group, send email to digitalpebbl...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/digitalpebble?hl=en-GB.
Did you configured the UIMA with Hadoop, If yes i need some inputs from you..
The procedure is very similar for UIMA, first generate a job file for the UIMA module, then copy the pear file to HDFS
./bin/hadoop fs -copyFromLocal /mylocalpath/WhitespaceTokenizer.pear /apps/WhitespaceTokenizer.pear
This time the parameters in behemoth-site.xml to specify are
<property> <name>uima.annotations.filter</name> <value>org.apache.uima.TokenAnnotation,org.apache.uima.SentenceAnnotation</value> <description>Annotations types to consider when serializing to the behemoth format, separated by commas </description> </property> <property> <name>uima.features.filter</name> <value>org.apache.uima.TokenAnnotation:posTag</value> <description>Feature names to consider when serializing to the behemoth format, separated by commas </description> </property>
./bin/hadoop jar ./behemoth-uima*job.jar com.digitalpebble.behemoth.uima.UIMADriver
/data/behemothcorpus /data/behemothcorpus-2 /apps/WhitespaceTokenizer.pear
Hello,
I'm facing the exact issue.
The behemoth output simply contains the files that I gave as input. The job generated by behemoth is obviously running without any errors on hadoop. Has anyone figured out how to get the annotations?
--Vignesh
On Friday, 21 September 2012 21:27:53 UTC+5:30, Omar wrote:--Hi,
I have a fully functional UIMA job that does simple annotation. I can successfully launch it via my local CAS GUI.
I have been trying to run the UIMA job on Hadoop using Apache Behemoth. I am wondering if someone has worked on this? The job runs successfully but in the hadoop output directory; there is no output from the UIMA job. I can see in the Hadoop job tracker output that the job completed successfully and it copied its input data to the final output directory.
Can someone point me to what could be going on here?
Thanks
Omar
You received this message because you are subscribed to the Google Groups "DigitalPebble" group.
To unsubscribe from this group and stop receiving emails from it, send an email to digitalpebbl...@googlegroups.com.
Visit this group at http://groups.google.com/group/digitalpebble?hl=en-GB.For more options, visit https://groups.google.com/groups/opt_out.
Thanks Julien,I'm getting the annotations properly now. The problem was, behemoth wasn't picking up the config file correctly. I edited the behemoth script file to point to the correct conf directory and its working fine now.-- Vignesh
Thanks Julien,I'm getting the annotations properly now. The problem was, behemoth wasn't picking up the config file correctly. I edited the behemoth script file to point to the correct conf directory and its working fine now.
-- Vignesh
On Tuesday, 16 April 2013 14:31:27 UTC+5:30, DigitalPebble wrote: