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

Source Code of org.apache.hadoop.hbase.hbql.impl.CompletionQueueExecutor$LocalThreadPoolExecutor

/*
* Copyright (c) 2011.  The Apache Software Foundation
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.hadoop.hbase.hbql.impl;

import org.apache.hadoop.hbase.hbql.client.HBqlException;
import org.apache.hadoop.hbase.hbql.util.ArrayBlockingQueues;
import org.apache.hadoop.hbase.hbql.util.CompletionQueue;
import org.apache.hadoop.hbase.hbql.util.Lists;
import org.apache.hadoop.hbase.hbql.util.NamedThreadFactory;
import org.apache.hadoop.hbase.hbql.util.PoolableElement;

import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.RejectedExecutionHandler;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;

public abstract class CompletionQueueExecutor<T> extends PoolableElement<CompletionQueueExecutor> {

    private final AtomicBoolean       atomicShutdown       = new AtomicBoolean(false);
    private final AtomicInteger       workSubmittedCounter = new AtomicInteger(0);
    private final ExecutorService     submitterThread      = Executors.newSingleThreadExecutor();
    private final List<HBqlException> exceptionList        = Lists.newArrayList();
    private final LocalThreadPoolExecutor threadPoolExecutor;
    private final CompletionQueue<T>      completionQueue;

    private static class LocalCallerRunsPolicy extends ThreadPoolExecutor.CallerRunsPolicy {

        public void rejectedExecution(final Runnable runnable, final ThreadPoolExecutor threadPoolExecutor) {
            super.rejectedExecution(runnable, threadPoolExecutor);
            ((LocalThreadPoolExecutor)threadPoolExecutor).incrementRejectionCount();
        }
    }

    private static class LocalThreadPoolExecutor extends ThreadPoolExecutor {

        private final AtomicInteger rejectionCounter = new AtomicInteger(0);

        private LocalThreadPoolExecutor(final int minPoolSize,
                                        final int maxPoolSize,
                                        final long keepAliveTime,
                                        final TimeUnit timeUnit,
                                        final BlockingQueue<Runnable> backingQueue,
                                        final ThreadFactory threadFactory,
                                        final RejectedExecutionHandler handler) {
            super(minPoolSize, maxPoolSize, keepAliveTime, timeUnit, backingQueue, threadFactory, handler);
        }

        private AtomicInteger getRejectionCounter() {
            return this.rejectionCounter;
        }

        private void incrementRejectionCount() {
            this.getRejectionCounter().incrementAndGet();
        }

        private void reset() {
            this.getRejectionCounter().set(0);
        }

        public int getRejectionCount() {
            return this.getRejectionCounter().get();
        }
    }

    protected CompletionQueueExecutor(final QueryExecutorPoolImpl executorPool,
                                      final int minThreadCount,
                                      final int maxThreadCount,
                                      final long keepAliveSecs,
                                      final int completionQueueSize) throws HBqlException {
        super(executorPool);
        final BlockingQueue<Runnable> backingQueue = ArrayBlockingQueues.newArrayBlockingQueue(maxThreadCount * 5);
        final String name = executorPool == null ? "Non query exec pool" : "Query exec pool " + executorPool.getName();
        this.threadPoolExecutor = new LocalThreadPoolExecutor(minThreadCount,
                                                              maxThreadCount,
                                                              keepAliveSecs,
                                                              TimeUnit.SECONDS,
                                                              backingQueue,
                                                              new NamedThreadFactory(name),
                                                              new LocalCallerRunsPolicy());
        this.completionQueue = new CompletionQueue<T>(completionQueueSize);
    }

    public abstract boolean threadsReadResults();

    private ExecutorService getSubmitterThread() {
        return this.submitterThread;
    }

    private LocalThreadPoolExecutor getThreadPoolExecutor() {
        return this.threadPoolExecutor;
    }

    private CompletionQueue<T> getCompletionQueue() {
        return this.completionQueue;
    }

    private AtomicInteger getWorkSubmittedCounter() {
        return this.workSubmittedCounter;
    }

    public void putElement(final T val) throws HBqlException {
        this.getCompletionQueue().putElement(val);
    }

    public void putCompletion() {
        this.getCompletionQueue().putCompletionToken();
    }

    public CompletionQueue.Element<T> takeElement() throws HBqlException {
        if (this.getExceptionList().size() > 0)
            throw this.getExceptionList().remove(0);

        return this.getCompletionQueue().takeElement();
    }

    public int getRejectionCount() {
        return this.getThreadPoolExecutor().getRejectionCount();
    }

    private List<HBqlException> getExceptionList() {
        return this.exceptionList;
    }

    public void addException(final HBqlException exception) {
        this.getExceptionList().add(exception);
    }

    public boolean moreResultsPending() {
        final int completionCount = this.getCompletionQueue().getCompletionCount();
        final int submittedCount = this.getWorkSubmittedCounter().get();
        return completionCount < submittedCount;
    }

    public void submitWorkToSubmitterThread(final Runnable job) {
        this.getWorkSubmittedCounter().incrementAndGet();
        this.getSubmitterThread().submit(job);
    }

    public void submitWorkToThreadPool(final Runnable job) {
        this.getWorkSubmittedCounter().incrementAndGet();
        this.getThreadPoolExecutor().execute(job);
    }

    public void resetElement() {
        this.getWorkSubmittedCounter().set(0);
        this.getExceptionList().clear();
        this.getCompletionQueue().reset();
        this.getThreadPoolExecutor().reset();
    }

    public void close() {
        this.resetElement();
        this.releaseElement();
    }

    public void releaseElement() {
        this.getElementPool().release(this);
    }

    private AtomicBoolean getAtomicShutdown() {
        return this.atomicShutdown;
    }

    public boolean isShutdown() {
        return this.getAtomicShutdown().get();
    }

    public void shutdown() {
        if (!this.isShutdown()) {
            synchronized (this) {
                if (!this.isShutdown()) {
                    this.getThreadPoolExecutor().shutdown();
                    this.getSubmitterThread().shutdown();
                    this.getAtomicShutdown().set(true);
                }
            }
        }
    }
}
TOP

Related Classes of org.apache.hadoop.hbase.hbql.impl.CompletionQueueExecutor$LocalThreadPoolExecutor

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.