Package org.apache.hadoop.hbase.hbql.impl

Examples of org.apache.hadoop.hbase.hbql.impl.QueryExecutorPoolImpl.shutdown()


    public static boolean dropQueryExecutorPool(final String name) {

        if (Utils.isValidString(name) && getExecutorPoolMap().containsKey(name)) {
            final QueryExecutorPoolImpl queryExecutorPool = getExecutorPoolMap().remove(name);
            queryExecutorPool.shutdown();
            return true;
        }

        return false;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.