2005hithlj commented on code in PR #4457:
URL: https://github.com/apache/hbase/pull/4457#discussion_r885608808
##########
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java:
##########
@@ -2539,4 +2539,9 @@ default BalanceResponse balanceRSGroup(String groupName)
throws IOException {
*/
List<LogEntry> getLogEntries(Set<ServerName> serverNames, String logType,
ServerType serverType,
int limit, Map<String, Object> filterParams) throws IOException;
+
+ /**
+ * Force request flush master local region
+ */
+ void forceRequestFlushMasterStore() throws IOException;
Review Comment:
I checked the code, because region.flush() is a synchronous method, we
should call resetChangesAfterLastFlush() before calling region.flush() method,
which should be similar to MasterRegionFlusherAndCompactor.flushLoop() method
code logic. @Apache9
--
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]