System.exit(exitCode);
}
}
My mapreduce job run without an error but I see no data in Table. Few more
inputs that I have hbase and zookeeper jar in hadoop classpath on all
servers. I can add data by hand in the table.
Please let me know if I am doing anything wrong here. Than
thanks Tim!
On Tue, Nov 10, 2009 at 11:35 AM, Tim Robertson
wrote:
>
> http://hadoop.apache.org/common/docs/current/api/org/apache/hadoop/mapreduce/Reducer.html
>
> "The default implementation is an identity function."
>
> Cheers,
> Tim
>
> On Tue, Nov 10, 2
IdentityReducer class is deprecated in hadoop 0.2. What can I use for
similar functionality?
--
Vipul Sharma
sharmavipul AT gmail DOT com
xml
>message.
Thanks Amandeep! I want to use the split efficiently. If I use one split per
xml file then it wont be very efficient since size of xml files is small ~
1meg. What I want to do is to have multiple files in one split. I will
update you once I am done with this.
--
Vipul Sharma
sharmavip
ot be efficient since my
xml files are small. What I would want to do is to have a split that
includes multiple files so that I can use one map for around 64meg of data.
And do the parsing inside map. I will update you once it makes more sense to
even me.
--
Vipul Sharma
sharmavipul AT gmail DOT com
Mark,
were you able to concatenate both the xml files together. What did you do to
keep the resulting xml well forned?
Regards,
Vipul Sharma,
Cell: 281-217-0761
hope I was more clear this time??
Regards,
Vipul Sharma,
Cell: 281-217-0761
On Mon, Nov 2, 2009 at 4:00 PM, Amandeep Khurana wrote:
> Are the xml's in flat files or stored in Hbase?
>
> 1. If they are in flat files, you can use the StreamXmlRecordReader if that
> works for y
per
xml file or is there another way of doing this? Thanks for your help and
time.
Regards,
Vipul Sharma,
I am new to hadoop and still learning most of the details. I am working on an
application that will take input from lots of small xml files. Each xml
files has some record that I want to parse and input data in a hbase table.
How should I go about parsing xml files and input in map functions. Shou