yuqi1129 commented on code in PR #5974:
URL: https://github.com/apache/gravitino/pull/5974#discussion_r1901456344
##########
clients/filesystem-hadoop3/src/main/java/org/apache/gravitino/filesystem/hadoop/GravitinoVirtualFileSystem.java:
##########
@@ -193,10 +210,18 @@ private ThreadFactory newDaemonThreadFactory(String name)
{
return new ThreadFactoryBuilder().setDaemon(true).setNameFormat(name +
"-%d").build();
}
- private void initializeClient(Configuration configuration) {
+ /**
+ * Get Gravitino client by the configuration.
+ *
+ * @param configuration The configuration for the Gravitino client.
+ * @return The Gravitino client.
+ */
+ public GravitinoClient initializeClient(Configuration configuration) {
// initialize the Gravitino client
String serverUri =
configuration.get(GravitinoVirtualFileSystemConfiguration.FS_GRAVITINO_SERVER_URI_KEY);
+ String metalakeValue =
Review Comment:
There is a global `metalakeName` in GVFS
--
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]