1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.hadoop.hbase.regionserver;
19
20 import org.apache.hadoop.conf.Configuration;
21 import org.apache.hadoop.hbase.Abortable;
22 import org.apache.hadoop.hbase.HBaseInterfaceAudience;
23 import org.apache.hadoop.hbase.HConstants;
24 import org.apache.hadoop.hbase.classification.InterfaceAudience;
25 import org.apache.hadoop.hbase.classification.InterfaceStability;
26 import org.apache.hadoop.hbase.ipc.PriorityFunction;
27 import org.apache.hadoop.hbase.ipc.RpcScheduler;
28 import org.apache.hadoop.hbase.ipc.SimpleRpcScheduler;
29
30
31
32 @InterfaceAudience.LimitedPrivate({HBaseInterfaceAudience.COPROC, HBaseInterfaceAudience.PHOENIX})
33 @InterfaceStability.Evolving
34 public class SimpleRpcSchedulerFactory implements RpcSchedulerFactory {
35
36
37
38
39 @Override
40 @Deprecated
41 public RpcScheduler create(Configuration conf, PriorityFunction priority) {
42 return create(conf, priority, null);
43 }
44
45 @Override
46 public RpcScheduler create(Configuration conf, PriorityFunction priority, Abortable server) {
47 int handlerCount = conf.getInt(HConstants.REGION_SERVER_HANDLER_COUNT,
48 HConstants.DEFAULT_REGION_SERVER_HANDLER_COUNT);
49 return new SimpleRpcScheduler(
50 conf,
51 handlerCount,
52 conf.getInt(HConstants.REGION_SERVER_HIGH_PRIORITY_HANDLER_COUNT,
53 HConstants.DEFAULT_REGION_SERVER_HIGH_PRIORITY_HANDLER_COUNT),
54 conf.getInt(HConstants.REGION_SERVER_REPLICATION_HANDLER_COUNT,
55 HConstants.DEFAULT_REGION_SERVER_REPLICATION_HANDLER_COUNT),
56 priority,
57 server,
58 HConstants.QOS_THRESHOLD);
59 }
60 }