anmolnar commented on code in PR #7730:
URL: https://github.com/apache/hbase/pull/7730#discussion_r3855626744


##########
hbase-server/src/main/java/org/apache/hadoop/hbase/HBaseServerBase.java:
##########
@@ -745,4 +745,16 @@ private String resolveHostName(Configuration conf, String 
useThisHostnameInstead
   protected abstract boolean cacheTableDescriptor();
 
   protected abstract boolean clusterMode();
+
+  protected TableName getDefaultMetaTableName() {
+    return TableName.META_TABLE_NAME;
+  }
+
+  @Override
+  public TableName getMetaTableName() {
+    // For now, it is hbase:meta because we don't support custom meta table 
name.
+    // After adding support for custom meta table names, we can calculate this 
from conf and use it
+    // downstream to persist it in Master Region.
+    return getDefaultMetaTableName();

Review Comment:
   Is this comment still valid?



-- 
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]

Reply via email to