On 04/22/2011 09:09 PM, W.P. McNeill wrote:
I want to create a sequence file on my local harddrive.  I want to write
something like this:

       LocalFileSystem fs = new LocalFileSystem();
       Configuration configuration = new Configuration();

Try doing this instead:

        Configuration conf = new Configuration();
        LocalFileSystem fs = FileSystem.getLocal(conf);

DR

Reply via email to