Apache9 commented on a change in pull request #512: HBASE-22881 Fix Non-daemon
threads in HMaster
URL: https://github.com/apache/hbase/pull/512#discussion_r315969256
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
##########
@@ -226,7 +226,8 @@ public FSHLog(final FileSystem fs, final Path rootDir,
final String logDir,
// Using BlockingWaitStrategy. Stuff that is going on here takes so long
it makes no sense
// spinning as other strategies do.
this.disruptor = new Disruptor<>(RingBufferTruck::new,
- getPreallocatedEventCount(),
Threads.getNamedThreadFactory(hostingThreadName + ".append"),
+ getPreallocatedEventCount(),
+ Threads.newDaemonThreadFactory(hostingThreadName + ".append"),
Review comment:
I do not think this is in master?
----------------------------------------------------------------
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