hgromer commented on code in PR #7288:
URL: https://github.com/apache/hbase/pull/7288#discussion_r2362757523
##########
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java:
##########
@@ -2651,4 +2651,7 @@ List<LogEntry> getLogEntries(Set<ServerName> serverNames,
String logType, Server
* Get the list of cached files
*/
List<String> getCachedFilesList(ServerName serverName) throws IOException;
+
+ @InterfaceAudience.Private
+ void restoreBackupSystemTable(String snapshotName) throws IOException;
Review Comment:
Just for my understanding, why is
```java
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.HBCK)
default Hbck getHbck() throws IOException {
return FutureUtils.get(toAsyncConnection().getHbck());
}
```
better than
```java
@InterfaceAudience.Private
void restoreBackupSystemTable(String snapshotName) throws IOException;
```
In terms of the HBCK being better w/r/t the maintenance burden when it comes
to mixing IA.Private in public interfaces?
--
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]