Examples of ElementDescriptor


Examples of org.apache.pig.backend.datastorage.ElementDescriptor

   
    private String createHadoopTempFile(PigContext ctx) throws Throwable {
       
        File fp1 = generateTempFile() ;
               
        ElementDescriptor localElem =
            ctx.getLfs().asElement(fp1.getAbsolutePath());          
           
        String path = fp1.getAbsolutePath();
        if (System.getProperty("os.name").toUpperCase().startsWith("WINDOWS"))
            path = FileLocalizer.parseCygPath(path, FileLocalizer.STYLE_UNIX);
           
        ElementDescriptor distribElem = ctx.getDfs().asElement(path) ;
   
        localElem.copy(distribElem, null, false);
           
        return distribElem.toString();
    }
View Full Code Here

Examples of org.apache.pig.backend.datastorage.ElementDescriptor

        
        String path = fp1.getAbsolutePath();
        if (System.getProperty("os.name").toUpperCase().startsWith("WINDOWS"))
            path = FileLocalizer.parseCygPath(path, FileLocalizer.STYLE_UNIX);
       
        ElementDescriptor distribElem = ctx.getDfs().asElement(path) ;
       
        if (distribElem.exists()) {
            distribElem.delete() ;
        }  
           
        return distribElem.toString();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.