Created
December 10, 2012 19:25
-
-
Save AndyCross/4252721 to your computer and use it in GitHub Desktop.
HDInsight ASV
This file contains 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
public override HadoopJobConfiguration Configure(ExecutorContext context) | |
{ | |
try | |
{ | |
HadoopJobConfiguration config = new HadoopJobConfiguration(); | |
config.InputPath = "asv://container/inputpath/"; | |
config.OutputFolder = "asv://container/outputpath" + DateTime.Now.ToString("yyyyMMddhhmmss"); | |
return config; | |
} | |
catch(Exception ex) | |
{ | |
Console.WriteLine(ex.ToString()); | |
} | |
return null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment