Created
July 18, 2016 08:17
-
-
Save hn5092/dda45b448b54c127146574977596bbdc to your computer and use it in GitHub Desktop.
线程调度
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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.ipc; | |
import org.apache.hadoop.conf.Configuration; | |
import org.apache.hadoop.hbase.DaemonThreadFactory; | |
import java.io.IOException; | |
import java.util.concurrent.ArrayBlockingQueue; | |
import java.util.concurrent.ThreadPoolExecutor; | |
import java.util.concurrent.TimeUnit; | |
import org.apache.hadoop.hbase.ipc.CallRunner; | |
/** | |
* A very simple {@code }RpcScheduler} that serves incoming requests in order. | |
* | |
* This can be used for HMaster, where no prioritization is needed. | |
*/ | |
public class FifoRpcScheduler extends RpcScheduler { | |
private final int handlerCount; | |
private final int maxQueueLength; | |
private ThreadPoolExecutor executor; | |
public FifoRpcScheduler(Configuration conf, int handlerCount) { | |
this.handlerCount = handlerCount; | |
this.maxQueueLength = conf.getInt("hbase.ipc.server.max.callqueue.length", | |
handlerCount * RpcServer.DEFAULT_MAX_CALLQUEUE_LENGTH_PER_HANDLER); | |
} | |
@Override | |
public void init(Context context) { | |
// no-op | |
} | |
@Override | |
public void start() { | |
this.executor = new ThreadPoolExecutor( | |
handlerCount, | |
handlerCount, | |
60, | |
TimeUnit.SECONDS, | |
new ArrayBlockingQueue<Runnable>(maxQueueLength), | |
new DaemonThreadFactory("FifoRpcScheduler.handler"), | |
new ThreadPoolExecutor.CallerRunsPolicy()); | |
} | |
@Override | |
public void stop() { | |
this.executor.shutdown(); | |
} | |
@Override | |
public void dispatch(final CallRunner task) throws IOException, InterruptedException { | |
executor.submit(new Runnable() { | |
@Override | |
public void run() { | |
task.run(); | |
} | |
}); | |
} | |
@Override | |
public int getGeneralQueueLength() { | |
return executor.getQueue().size(); | |
} | |
@Override | |
public int getPriorityQueueLength() { | |
return 0; | |
} | |
@Override | |
public int getReplicationQueueLength() { | |
return 0; | |
} | |
@Override | |
public int getActiveRpcHandlerCount() { | |
return executor.getActiveCount(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment