Package com.thinkaurelius.faunus.mapreduce

Examples of com.thinkaurelius.faunus.mapreduce.FaunusJobControl


    }

    @Override
    public Object call() throws Exception {
        FaunusCompiler compiler = faunusPipeline.getCompiler();
        FaunusJobControl jobControl = new FaunusJobControl(faunusPipeline.getGraph(), compiler.getJobs());

        Thread thread = new Thread(jobControl);
        thread.start();

        logger.debug("Submitted job");

        try {
            while (!jobControl.allFinished()) {
                try {
                    Thread.sleep(5000);
                } catch (InterruptedException e) {
                    // ignore
                }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.faunus.mapreduce.FaunusJobControl

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.