Package org.apache.hcatalog.templeton.tool

Examples of org.apache.hcatalog.templeton.tool.TempletonControllerJob$KeepAlive


    private String queueAsUser(UserGroupInformation ugi, final List<String> args)
        throws IOException, InterruptedException {
        String id = ugi.doAs(new PrivilegedExceptionAction<String>() {
            public String run() throws Exception {
                String[] array = new String[args.size()];
                TempletonControllerJob ctrl = new TempletonControllerJob();
                ToolRunner.run(ctrl, args.toArray(array));
                return ctrl.getSubmittedId();
            }
        });

        return id;
    }
View Full Code Here

TOP

Related Classes of org.apache.hcatalog.templeton.tool.TempletonControllerJob$KeepAlive

Copyright © 2018 www.massapicom. 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.