This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Elastacloud.Hadoop.StreamingUnitExample.Job.Map; | |
| using Elastacloud.Hadoop.StreamingUnitExample.Job.Reduce; | |
| using Microsoft.Hadoop.MapReduce; | |
| namespace Elastacloud.Hadoop.StreamingUnitExample.Job | |
| { | |
| public class HelloWorldJob : HadoopJob<HelloWorldMapper, HelloWorldReducer> | |
| { | |
| public override HadoopJobConfiguration Configure(ExecutorContext context) | |
| { |
NewerOlder