Package com.netflix.genie.common.exceptions

Examples of com.netflix.genie.common.exceptions.GenieServerUnavailableException


        // TODO: Gotta be something better we can do than this
        if (numRunningJobs >= maxRunningJobs) {
            // if we get here, job can't be forwarded to an idle
            // instance anymore and current node is overloaded
            throw new GenieServerUnavailableException(
                    "Number of running jobs greater than system limit ("
                            + maxRunningJobs
                            + ") - try another instance or try again later");
        }
View Full Code Here

TOP

Related Classes of com.netflix.genie.common.exceptions.GenieServerUnavailableException

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.