Package org.apache.hadoop.thriftfs.jobtracker.api

Examples of org.apache.hadoop.thriftfs.jobtracker.api.ThriftJobProfile


            return toThrift(job, true, tracker);
        }

        public static ThriftJobProfile toThrift(JobProfile profile) {
            // Takes no locks
            ThriftJobProfile ret = new ThriftJobProfile();
            ret.setJobFile(profile.getJobFile());
            ret.setJobID(toThrift(profile.getJobID()));
            ret.setName(profile.getJobName());
            ret.setQueueName(profile.getQueueName());
            ret.setUser(profile.getUser());
            return ret;
        }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.thriftfs.jobtracker.api.ThriftJobProfile

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.