iconara / rubydoop

Write Hadoop jobs in JRuby
220 stars 33 forks source link

Make it possible to specify Java classes as mappers, reducers, partitioners, etc. #7

Open iconara opened 11 years ago

iconara commented 11 years ago

Currently there's no way to mix Ruby and Java classes in a job. Sometimes you want to write the mapper in Ruby and use a built-in reducer, or a custom partitioner written in Java. This is not possible (except it you do a raw set, but that isn't very pretty).

iconara commented 9 years ago

I think this was fixed by #27

grddev commented 9 years ago

Actually, #27 only fixes setting the {map,}output{key,value} classes. More code is required to support Java mappers, reducers and whatnot.