virajjasani commented on a change in pull request #754: HBASE-22978 : Online
slow response log
URL: https://github.com/apache/hbase/pull/754#discussion_r371631514
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
##########
@@ -590,6 +596,10 @@ public HRegionServer(final Configuration conf) throws
IOException {
this.abortRequested = false;
this.stopped = false;
+ // initiate online slowlog ringbuffer only for RegionServers
+ if (!(this instanceof HMaster)) {
Review comment:
Honestly I don't like it either but do we really have a better way? Like do
we have some config to check this or some param may be?
e.g. I see lot of these codes:
```
if (server instanceof HRegionServer) {
rsServerHost = ((HRegionServer)
server).getRegionServerCoprocessorHost();
}
```
```
if (server instanceof HRegionServer) {
NettyEventLoopGroupConfig config = ((HRegionServer)
server).getEventLoopGroupConfig();
eventLoopGroup = config.group();
channelClass = config.serverChannelClass();
} else {
eventLoopGroup = new NioEventLoopGroup(0,
new DefaultThreadFactory("NettyRpcServer", true,
Thread.MAX_PRIORITY));
channelClass = NioServerSocketChannel.class;
}
```
```
boolean isMasterNotCarryTable =
this instanceof HMaster && !LoadBalancer.isTablesOnMaster(conf);
```
and so on. My point is we are trying to intialize something for RS and not
for HM and may be I am not aware of better decision making conditions that we
might already have. Could you please point me to one? Would be really helpful.
Here, a `protected void postConstruction` method not help right? Since we have
to initialize something in parent class and not in child class. We don't want
to make super() from child class initialize something without knowing the
instance and then let child re-initialize(override) it with null or something
similar?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services