You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by sn...@apache.org on 2020/03/26 02:14:01 UTC

[incubator-pinot] branch master updated: Change the name for azure data lake gen2 implementation (#5188)

This is an automated email from the ASF dual-hosted git repository.

snlee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ff155a  Change the name for azure data lake gen2 implementation (#5188)
8ff155a is described below

commit 8ff155a2a0bad5784d125d9e188fdf015acf5ec1
Author: Seunghyun Lee <sn...@linkedin.com>
AuthorDate: Wed Mar 25 19:13:54 2020 -0700

    Change the name for azure data lake gen2 implementation (#5188)
---
 .../filesystem/{AzureGen2PinotFS.java => ADLSGen2PinotFS.java}      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pinot-plugins/pinot-file-system/pinot-adls/src/main/java/org/apache/pinot/plugin/filesystem/AzureGen2PinotFS.java b/pinot-plugins/pinot-file-system/pinot-adls/src/main/java/org/apache/pinot/plugin/filesystem/ADLSGen2PinotFS.java
similarity index 99%
rename from pinot-plugins/pinot-file-system/pinot-adls/src/main/java/org/apache/pinot/plugin/filesystem/AzureGen2PinotFS.java
rename to pinot-plugins/pinot-file-system/pinot-adls/src/main/java/org/apache/pinot/plugin/filesystem/ADLSGen2PinotFS.java
index 488aca7..ba45764 100644
--- a/pinot-plugins/pinot-file-system/pinot-adls/src/main/java/org/apache/pinot/plugin/filesystem/AzureGen2PinotFS.java
+++ b/pinot-plugins/pinot-file-system/pinot-adls/src/main/java/org/apache/pinot/plugin/filesystem/ADLSGen2PinotFS.java
@@ -66,8 +66,8 @@ import org.slf4j.LoggerFactory;
  *
  * TODO: add the unit test
  */
-public class AzureGen2PinotFS extends PinotFS {
-  private static final Logger LOGGER = LoggerFactory.getLogger(AzureGen2PinotFS.class);
+public class ADLSGen2PinotFS extends PinotFS {
+  private static final Logger LOGGER = LoggerFactory.getLogger(ADLSGen2PinotFS.class);
 
   private static final String ACCOUNT_NAME = "accountName";
   private static final String ACCESS_KEY = "accessKey";
@@ -117,7 +117,7 @@ public class AzureGen2PinotFS extends PinotFS {
     _blobServiceClient =
         new BlobServiceClientBuilder().credential(sharedKeyCredential).endpoint(blobServiceEndpointUrl).buildClient();
     _fileSystemClient = serviceClient.getFileSystemClient(fileSystemName);
-    LOGGER.info("AzureGen2PinotFS is initialized (accountName={}, fileSystemName={}, dfsServiceEndpointUrl={}, "
+    LOGGER.info("ADLSGen2PinotFS is initialized (accountName={}, fileSystemName={}, dfsServiceEndpointUrl={}, "
             + "blobServiceEndpointUrl={}, enableChecksum={})", accountName, fileSystemName, dfsServiceEndpointUrl,
         blobServiceEndpointUrl, _enableChecksum);
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org