Package com.scaleunlimited.cascading.local

Examples of com.scaleunlimited.cascading.local.LocalPlatform


    private JobConf _hadoopJobConf = null;

    public BixoPlatform(Class applicationJarClass, Platform platform) throws Exception {
        super(applicationJarClass);
        if (platform == Platform.Local) {
            _platform = new LocalPlatform(applicationJarClass);
            setJobPollingInterval(CASCADING_LOCAL_JOB_POLLING_INTERVAL);
        } else {
            configureHadoopPlatform(applicationJarClass, new JobConf());
        }
    }
View Full Code Here

TOP

Related Classes of com.scaleunlimited.cascading.local.LocalPlatform

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.