I am trying to port an existing Hadoop application which requires access to multiple input-paths. In the current application, this is achieved using: FileInputFormat.addInputPath( job, listedPaths[i] )
The addInputPath() method here adds the Path to the list of inputs for the map-reduce job.
Is there a way in Spring Hadoop to achieve the same? Please suggest. Thanks


Reply With Quote