Skip to content

Instantly share code, notes, and snippets.

@butlermh
Created June 9, 2011 10:50
Show Gist options
  • Save butlermh/1016517 to your computer and use it in GitHub Desktop.
Save butlermh/1016517 to your computer and use it in GitHub Desktop.
Changing Driver for new Hadoop API 2
job.setInputFormat(SequenceFileInputFormat.class);
job.setOutputFormat(SequenceFileOutputFormat.class);
BECOMES
job.setInputFormatClass(SequenceFileInputFormat.class);
job.setOutputFormatClass(SequenceFileOutputFormat.class);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment