I'm using Azure HDInsight.I have written MapReduce code in .Net SDK. The following code i have written to read multiple files:
HadoopJobConfiguration hadoopConfiguration = new HadoopJobConfiguration();
hadoopConfiguration.InputPath ="wasb:///demo/inputTwinkle/*.txt";
hadoopConfiguration.OutputFolder = "wasb:///demo/outputTwinkle";
but it did't work.
can please provide a way to read multiple files using .NET with hdinsight.