Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is that the class should extend ObjectWritable class? Then how can I pass it from client to the Map and Reduce? thanks

share|improve this question
3  
You should work on your accept rate - 7 questions and 0% accepted! – Arne Burmeister Oct 27 '11 at 9:02
Many people ask me to do that, but I am really an idol about it. How I can do that? – afancy Oct 28 '11 at 8:45
1  
On questions you have asked, beneath the upvote/downvote arrows there is a check mark. You can click it to toggle that you accept the answer. It turns green if you do. – Joe23 Oct 28 '11 at 9:05

1 Answer

up vote 2 down vote accepted

I assume you mean to pass an object from your client code to your Mappers and Reducers?

You will have to use some form of serialization to do that, since the data is going over the wire. There are a few possibilities depending on your scenario:

  1. Probably the best solution would be to instantiate the object in the Mappers/Reducers. To pass the information required for the constructor call, you can use the Job-Configuration.

    conf.setInt("foo", 32);
    conf.set("bar", "bazz");
    
  2. If your object is serializable and quite small you can serialize it and include a base64 encoded version of it in the JobConf.

  3. If the serialized objects are to big, you can use the distributed cache: http://hadoop.apache.org/common/docs/r0.20.2/mapred_tutorial.html#DistributedCache
share|improve this answer
1  
Check this article on the comparison of the different serialization frameworks which can be used with Hadoop. Compression might also be considered, if the object is huge. – Praveen Sripati Oct 27 '11 at 13:38

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.