|
Kartashov, Andy
2012-10-02, 13:31
Harsh J
2012-10-02, 14:03
Kartashov, Andy
2012-10-02, 16:01
Chris Nauroth
2012-10-02, 16:52
Bertrand Dechoux
2012-10-02, 17:01
Mohamed Trad
2012-10-02, 17:35
Bertrand Dechoux
2012-10-02, 14:14
|
-
puzzled at the outputKartashov, Andy 2012-10-02, 13:31
Guys, have been stretching my head for the past couple of days. Why are my tags duplicated while the content they wrap around i.e.my StringBuilder sb is not?
My Reduce code is: while (values.hasNext()){ sb.append(values.next().toString()); } output.collect(key,new Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" )); The out put: 2459 <aaa> <aaa> <value.... ..... ...... </bbbb> </bbbb> NOTICE: This e-mail message and any attachments are confidential, subject to copyright and may be privileged. Any unauthorized use, copying or disclosure is prohibited. If you are not the intended recipient, please delete and contact the sender immediately. Please consider the environment before printing this e-mail. AVIS : le pr?sent courriel et toute pi?ce jointe qui l'accompagne sont confidentiels, prot?g?s par le droit d'auteur et peuvent ?tre couverts par le secret professionnel. Toute utilisation, copie ou divulgation non autoris?e est interdite. Si vous n'?tes pas le destinataire pr?vu de ce courriel, supprimez-le et contactez imm?diatement l'exp?diteur. Veuillez penser ? l'environnement avant d'imprimer le pr?sent courriel +
Kartashov, Andy 2012-10-02, 13:31
-
Re: puzzled at the outputHarsh J 2012-10-02, 14:03
Hi,
Could you clarify your post to show what you expect your code to have actually printed and what it has printed? On Tue, Oct 2, 2012 at 7:01 PM, Kartashov, Andy <[EMAIL PROTECTED]> wrote: > Guys, have been stretching my head for the past couple of days. Why are my > tags duplicated while the content they wrap around i.e.my StringBuilder sb > is not? > > > > > > My Reduce code is: > > while (values.hasNext()){ > > sb.append(values.next().toString()); > > } > > output.collect(key,new Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" )); > > > > The out put: > > 2459 > > <aaa> > > > > <aaa> > > <value…. > > ….. > > …… > > </bbbb> > > > > </bbbb> > > > > NOTICE: This e-mail message and any attachments are confidential, subject to > copyright and may be privileged. Any unauthorized use, copying or disclosure > is prohibited. If you are not the intended recipient, please delete and > contact the sender immediately. Please consider the environment before > printing this e-mail. AVIS : le présent courriel et toute pièce jointe qui > l'accompagne sont confidentiels, protégés par le droit d'auteur et peuvent > être couverts par le secret professionnel. Toute utilisation, copie ou > divulgation non autorisée est interdite. Si vous n'êtes pas le destinataire > prévu de ce courriel, supprimez-le et contactez immédiatement l'expéditeur. > Veuillez penser à l'environnement avant d'imprimer le présent courriel -- Harsh J +
Harsh J 2012-10-02, 14:03
-
RE: puzzled at the outputKartashov, Andy 2012-10-02, 16:01
I want:
Key <tag> Value1 Value2 </tag> I get double tags: Key <tag><tag> Value1 Value2 </tag></tag> Here is my last proposition that also failed in Reduce. ... public void reduce (..... .... StringBuilder sb = new StringBuilder(); while (values.hasNext()){ sb.append(values.next().toString()); } output.collect(key, new Text("\n<tag>"+sb.toString()+"</tag>" )); Kind regards, -----Original Message----- From: Harsh J [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2012 10:03 AM To: [EMAIL PROTECTED] Subject: Re: puzzled at the output Hi, Could you clarify your post to show what you expect your code to have actually printed and what it has printed? On Tue, Oct 2, 2012 at 7:01 PM, Kartashov, Andy <[EMAIL PROTECTED]> wrote: > Guys, have been stretching my head for the past couple of days. Why > are my tags duplicated while the content they wrap around i.e.my > StringBuilder sb is not? > > > > > > My Reduce code is: > > while (values.hasNext()){ > > sb.append(values.next().toString()); > > } > > output.collect(key,new > Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" )); > > > > The out put: > > 2459 > > <aaa> > > > > <aaa> > > <value.... > > ..... > > ...... > > </bbbb> > > > > </bbbb> > > > > NOTICE: This e-mail message and any attachments are confidential, > subject to copyright and may be privileged. Any unauthorized use, > copying or disclosure is prohibited. If you are not the intended > recipient, please delete and contact the sender immediately. Please > consider the environment before printing this e-mail. AVIS : le > présent courriel et toute pièce jointe qui l'accompagne sont > confidentiels, protégés par le droit d'auteur et peuvent être couverts > par le secret professionnel. Toute utilisation, copie ou divulgation > non autorisée est interdite. Si vous n'êtes pas le destinataire prévu de ce courriel, supprimez-le et contactez immédiatement l'expéditeur. > Veuillez penser à l'environnement avant d'imprimer le présent courriel -- Harsh J NOTICE: This e-mail message and any attachments are confidential, subject to copyright and may be privileged. Any unauthorized use, copying or disclosure is prohibited. If you are not the intended recipient, please delete and contact the sender immediately. Please consider the environment before printing this e-mail. AVIS : le présent courriel et toute pièce jointe qui l'accompagne sont confidentiels, protégés par le droit d'auteur et peuvent être couverts par le secret professionnel. Toute utilisation, copie ou divulgation non autorisée est interdite. Si vous n'êtes pas le destinataire prévu de ce courriel, supprimez-le et contactez immédiatement l'expéditeur. Veuillez penser à l'environnement avant d'imprimer le présent courriel +
Kartashov, Andy 2012-10-02, 16:01
-
Re: puzzled at the outputChris Nauroth 2012-10-02, 16:52
Is there also a Mapper? Is there any chance that logic in the Mapper
wrapped the values with the tags too, so that the records were already wrapped when they entered the reducer logic? Thank you, --Chris On Tue, Oct 2, 2012 at 9:01 AM, Kartashov, Andy <[EMAIL PROTECTED]>wrote: > I want: > > Key <tag> > Value1 > Value2 > </tag> > > I get double tags: > Key <tag><tag> > Value1 > Value2 > </tag></tag> > > Here is my last proposition that also failed in Reduce. > > ... > public void reduce (..... > .... > StringBuilder sb = new StringBuilder(); > while (values.hasNext()){ > sb.append(values.next().toString()); > } > > output.collect(key, new Text("\n<tag>"+sb.toString()+"</tag>" )); > > Kind regards, > > > > > > > > > -----Original Message----- > From: Harsh J [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 02, 2012 10:03 AM > To: [EMAIL PROTECTED] > Subject: Re: puzzled at the output > > Hi, > > Could you clarify your post to show what you expect your code to have > actually printed and what it has printed? > > On Tue, Oct 2, 2012 at 7:01 PM, Kartashov, Andy <[EMAIL PROTECTED]> > wrote: > > Guys, have been stretching my head for the past couple of days. Why > > are my tags duplicated while the content they wrap around i.e.my > > StringBuilder sb is not? > > > > > > > > > > > > My Reduce code is: > > > > while (values.hasNext()){ > > > > sb.append(values.next().toString()); > > > > } > > > > output.collect(key,new > > Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" )); > > > > > > > > The out put: > > > > 2459 > > > > <aaa> > > > > > > > > <aaa> > > > > <value.... > > > > ..... > > > > ...... > > > > </bbbb> > > > > > > > > </bbbb> > > > > > > > > NOTICE: This e-mail message and any attachments are confidential, > > subject to copyright and may be privileged. Any unauthorized use, > > copying or disclosure is prohibited. If you are not the intended > > recipient, please delete and contact the sender immediately. Please > > consider the environment before printing this e-mail. AVIS : le > > présent courriel et toute pièce jointe qui l'accompagne sont > > confidentiels, protégés par le droit d'auteur et peuvent être couverts > > par le secret professionnel. Toute utilisation, copie ou divulgation > > non autorisée est interdite. Si vous n'êtes pas le destinataire prévu de > ce courriel, supprimez-le et contactez immédiatement l'expéditeur. > > Veuillez penser à l'environnement avant d'imprimer le présent courriel > > > > -- > Harsh J > NOTICE: This e-mail message and any attachments are confidential, subject > to copyright and may be privileged. Any unauthorized use, copying or > disclosure is prohibited. If you are not the intended recipient, please > delete and contact the sender immediately. Please consider the environment > before printing this e-mail. AVIS : le présent courriel et toute pièce > jointe qui l'accompagne sont confidentiels, protégés par le droit d'auteur > et peuvent être couverts par le secret professionnel. Toute utilisation, > copie ou divulgation non autorisée est interdite. Si vous n'êtes pas le > destinataire prévu de ce courriel, supprimez-le et contactez immédiatement > l'expéditeur. Veuillez penser à l'environnement avant d'imprimer le présent > courriel > +
Chris Nauroth 2012-10-02, 16:52
-
Re: puzzled at the outputBertrand Dechoux 2012-10-02, 17:01
Combiner? And you are only using 'Text' as type?
Please do a real test with a specified input. We can only guess. Bertrand On Tue, Oct 2, 2012 at 6:52 PM, Chris Nauroth <[EMAIL PROTECTED]>wrote: > Is there also a Mapper? Is there any chance that logic in the Mapper > wrapped the values with the tags too, so that the records were already > wrapped when they entered the reducer logic? > > Thank you, > --Chris > > On Tue, Oct 2, 2012 at 9:01 AM, Kartashov, Andy <[EMAIL PROTECTED]>wrote: > >> I want: >> >> Key <tag> >> Value1 >> Value2 >> </tag> >> >> I get double tags: >> Key <tag><tag> >> Value1 >> Value2 >> </tag></tag> >> >> Here is my last proposition that also failed in Reduce. >> >> ... >> public void reduce (..... >> .... >> StringBuilder sb = new StringBuilder(); >> while (values.hasNext()){ >> sb.append(values.next().toString()); >> } >> >> output.collect(key, new Text("\n<tag>"+sb.toString()+"</tag>" )); >> >> Kind regards, >> >> >> >> >> >> >> >> >> -----Original Message----- >> From: Harsh J [mailto:[EMAIL PROTECTED]] >> Sent: Tuesday, October 02, 2012 10:03 AM >> To: [EMAIL PROTECTED] >> Subject: Re: puzzled at the output >> >> Hi, >> >> Could you clarify your post to show what you expect your code to have >> actually printed and what it has printed? >> >> On Tue, Oct 2, 2012 at 7:01 PM, Kartashov, Andy <[EMAIL PROTECTED]> >> wrote: >> > Guys, have been stretching my head for the past couple of days. Why >> > are my tags duplicated while the content they wrap around i.e.my >> > StringBuilder sb is not? >> > >> > >> > >> > >> > >> > My Reduce code is: >> > >> > while (values.hasNext()){ >> > >> > sb.append(values.next().toString()); >> > >> > } >> > >> > output.collect(key,new >> > Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" )); >> > >> > >> > >> > The out put: >> > >> > 2459 >> > >> > <aaa> >> > >> > >> > >> > <aaa> >> > >> > <value.... >> > >> > ..... >> > >> > ...... >> > >> > </bbbb> >> > >> > >> > >> > </bbbb> >> > >> > >> > >> > NOTICE: This e-mail message and any attachments are confidential, >> > subject to copyright and may be privileged. Any unauthorized use, >> > copying or disclosure is prohibited. If you are not the intended >> > recipient, please delete and contact the sender immediately. Please >> > consider the environment before printing this e-mail. AVIS : le >> > présent courriel et toute pièce jointe qui l'accompagne sont >> > confidentiels, protégés par le droit d'auteur et peuvent être couverts >> > par le secret professionnel. Toute utilisation, copie ou divulgation >> > non autorisée est interdite. Si vous n'êtes pas le destinataire prévu >> de ce courriel, supprimez-le et contactez immédiatement l'expéditeur. >> > Veuillez penser à l'environnement avant d'imprimer le présent courriel >> >> >> >> -- >> Harsh J >> NOTICE: This e-mail message and any attachments are confidential, subject >> to copyright and may be privileged. Any unauthorized use, copying or >> disclosure is prohibited. If you are not the intended recipient, please >> delete and contact the sender immediately. Please consider the environment >> before printing this e-mail. AVIS : le présent courriel et toute pièce >> jointe qui l'accompagne sont confidentiels, protégés par le droit d'auteur >> et peuvent être couverts par le secret professionnel. Toute utilisation, >> copie ou divulgation non autorisée est interdite. Si vous n'êtes pas le >> destinataire prévu de ce courriel, supprimez-le et contactez immédiatement >> l'expéditeur. Veuillez penser à l'environnement avant d'imprimer le présent >> courriel >> > > -- Bertrand Dechoux +
Bertrand Dechoux 2012-10-02, 17:01
-
Re: puzzled at the outputMohamed Trad 2012-10-02, 17:35
I agree with Bertrand. Try disabling the combiner.
Envoyé de mon iPhone Le 2 oct. 2012 à 19:02, Bertrand Dechoux <[EMAIL PROTECTED]> a écrit : > Combiner? And you are only using 'Text' as type? > > Please do a real test with a specified input. We can only guess. > > Bertrand > > On Tue, Oct 2, 2012 at 6:52 PM, Chris Nauroth <[EMAIL PROTECTED]> wrote: >> Is there also a Mapper? Is there any chance that logic in the Mapper wrapped the values with the tags too, so that the records were already wrapped when they entered the reducer logic? >> >> Thank you, >> --Chris >> >> On Tue, Oct 2, 2012 at 9:01 AM, Kartashov, Andy <[EMAIL PROTECTED]> wrote: >>> I want: >>> >>> Key <tag> >>> Value1 >>> Value2 >>> </tag> >>> >>> I get double tags: >>> Key <tag><tag> >>> Value1 >>> Value2 >>> </tag></tag> >>> >>> Here is my last proposition that also failed in Reduce. >>> >>> ... >>> public void reduce (..... >>> .... >>> StringBuilder sb = new StringBuilder(); >>> while (values.hasNext()){ >>> sb.append(values.next().toString()); >>> } >>> >>> output.collect(key, new Text("\n<tag>"+sb.toString()+"</tag>" )); >>> >>> Kind regards, >>> >>> >>> >>> >>> >>> >>> >>> >>> -----Original Message----- >>> From: Harsh J [mailto:[EMAIL PROTECTED]] >>> Sent: Tuesday, October 02, 2012 10:03 AM >>> To: [EMAIL PROTECTED] >>> Subject: Re: puzzled at the output >>> >>> Hi, >>> >>> Could you clarify your post to show what you expect your code to have actually printed and what it has printed? >>> >>> On Tue, Oct 2, 2012 at 7:01 PM, Kartashov, Andy <[EMAIL PROTECTED]> wrote: >>> > Guys, have been stretching my head for the past couple of days. Why >>> > are my tags duplicated while the content they wrap around i.e.my >>> > StringBuilder sb is not? >>> > >>> > >>> > >>> > >>> > >>> > My Reduce code is: >>> > >>> > while (values.hasNext()){ >>> > >>> > sb.append(values.next().toString()); >>> > >>> > } >>> > >>> > output.collect(key,new >>> > Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" )); >>> > >>> > >>> > >>> > The out put: >>> > >>> > 2459 >>> > >>> > <aaa> >>> > >>> > >>> > >>> > <aaa> >>> > >>> > <value.... >>> > >>> > ..... >>> > >>> > ...... >>> > >>> > </bbbb> >>> > >>> > >>> > >>> > </bbbb> >>> > >>> > >>> > >>> > NOTICE: This e-mail message and any attachments are confidential, >>> > subject to copyright and may be privileged. Any unauthorized use, >>> > copying or disclosure is prohibited. If you are not the intended >>> > recipient, please delete and contact the sender immediately. Please >>> > consider the environment before printing this e-mail. AVIS : le >>> > présent courriel et toute pièce jointe qui l'accompagne sont >>> > confidentiels, protégés par le droit d'auteur et peuvent être couverts >>> > par le secret professionnel. Toute utilisation, copie ou divulgation >>> > non autorisée est interdite. Si vous n'êtes pas le destinataire prévu de ce courriel, supprimez-le et contactez immédiatement l'expéditeur. >>> > Veuillez penser à l'environnement avant d'imprimer le présent courriel >>> >>> >>> >>> -- >>> Harsh J >>> NOTICE: This e-mail message and any attachments are confidential, subject to copyright and may be privileged. Any unauthorized use, copying or disclosure is prohibited. If you are not the intended recipient, please delete and contact the sender immediately. Please consider the environment before printing this e-mail. AVIS : le présent courriel et toute pièce jointe qui l'accompagne sont confidentiels, protégés par le droit d'auteur et peuvent être couverts par le secret professionnel. Toute utilisation, copie ou divulgation non autorisée est interdite. Si vous n'êtes pas le destinataire prévu de ce courriel, supprimez-le et contactez immédiatement l'expéditeur. Veuillez penser à l'environnement avant d'imprimer le présent courriel > > > > -- > Bertrand Dechoux +
Mohamed Trad 2012-10-02, 17:35
-
Re: puzzled at the outputBertrand Dechoux 2012-10-02, 14:14
And a simple way to do that is actually writing a unit test, with MRunit
for exemple. A little sample for a a full mapper-reducer test : MapReduceDriver.newMapReduceDriver(new WordCountMapper(),new WordCountReducer()) // given .withInput(new LongWritable(1), new Text("word1 word2 word2 word1"))// // then .withOutput(new Text("word1"), new LongWritable(2))// .withOutput(new Text("word2"), new LongWritable(2))// // when .runTest(); Of course, there is also a MapDriver and a ReduceDriver. And MRunitsupports both mapred and mapreduce packages. So you should be able to apply it to your project. Regards Bertrand On Tue, Oct 2, 2012 at 4:03 PM, Harsh J <[EMAIL PROTECTED]> wrote: > Hi, > > Could you clarify your post to show what you expect your code to have > actually printed and what it has printed? > > On Tue, Oct 2, 2012 at 7:01 PM, Kartashov, Andy <[EMAIL PROTECTED]> > wrote: > > Guys, have been stretching my head for the past couple of days. Why are > my > > tags duplicated while the content they wrap around i.e.my StringBuilder sb > > is not? > > > > > > > > > > > > My Reduce code is: > > > > while (values.hasNext()){ > > > > sb.append(values.next().toString()); > > > > } > > > > output.collect(key,new Text("\n<aaa>\n"+sb.toString()+"\n</bbbb>\n" > )); > > > > > > > > The out put: > > > > 2459 > > > > <aaa> > > > > > > > > <aaa> > > > > <value…. > > > > ….. > > > > …… > > > > </bbbb> > > > > > > > > </bbbb> > > > > > > > > NOTICE: This e-mail message and any attachments are confidential, > subject to > > copyright and may be privileged. Any unauthorized use, copying or > disclosure > > is prohibited. If you are not the intended recipient, please delete and > > contact the sender immediately. Please consider the environment before > > printing this e-mail. AVIS : le présent courriel et toute pièce jointe > qui > > l'accompagne sont confidentiels, protégés par le droit d'auteur et > peuvent > > être couverts par le secret professionnel. Toute utilisation, copie ou > > divulgation non autorisée est interdite. Si vous n'êtes pas le > destinataire > > prévu de ce courriel, supprimez-le et contactez immédiatement > l'expéditeur. > > Veuillez penser à l'environnement avant d'imprimer le présent courriel > > > > -- > Harsh J > -- Bertrand Dechoux +
Bertrand Dechoux 2012-10-02, 14:14
|