Apache9 commented on a change in pull request #3700:
URL: https://github.com/apache/hbase/pull/3700#discussion_r716333917
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
##########
@@ -1218,6 +1219,32 @@ private void
finishActiveMasterInitialization(MonitoredTask status) throws IOExc
LOG.debug("Balancer post startup initialization complete, took " + (
(EnvironmentEdgeManager.currentTime() - start) / 1000) + " seconds");
}
+
+ /*
+ A background thread to update all TableDescriptors that do not contain
+ StoreFileTracker implementation configuration. see HBASE-26263.
+ */
+ Thread STFChecking = new Thread(() -> {
+ try {
+ tableDescriptors.getAll().forEach((tableName, htd) -> {
Review comment:
We may have race here? What if there is a ModifyTableProcedure running
at the same time...
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]