sv2000 commented on a change in pull request #2849: HiveDataNode node addition 
to support adl and abfs URI for gobblin-se…
URL: https://github.com/apache/incubator-gobblin/pull/2849#discussion_r356886249
 
 

 ##########
 File path: 
gobblin-service/src/main/java/org/apache/gobblin/service/modules/flowgraph/datanodes/hive/HiveDataNode.java
 ##########
 @@ -24,24 +24,23 @@
 import com.google.common.base.Preconditions;
 import com.typesafe.config.Config;
 
-import java.util.Arrays;
 import joptsimple.internal.Strings;
 import lombok.EqualsAndHashCode;
 import lombok.Getter;
 
 import org.apache.gobblin.annotation.Alpha;
+import org.apache.gobblin.service.modules.flowgraph.BaseDataNode;
 import org.apache.gobblin.service.modules.flowgraph.FlowGraphConfigurationKeys;
-import 
org.apache.gobblin.service.modules.flowgraph.datanodes.fs.FileSystemDataNode;
 import org.apache.gobblin.util.ConfigUtils;
 
 
 /**
- * An abstract {@link HiveDataNode} implementation. In addition to the 
required properties of a {@link FileSystemDataNode}, an {@link HiveDataNode}
+ * An {@link HiveDataNode} implementation. In addition to the required 
properties of a {@link BaseDataNode}, an {@link HiveDataNode}
  * must have a metastore URI specified.
  */
 @Alpha
 @EqualsAndHashCode (callSuper = true)
-public class HiveDataNode extends FileSystemDataNode {
+public class HiveDataNode extends BaseDataNode {
   public static final String METASTORE_URI_KEY = 
FlowGraphConfigurationKeys.DATA_NODE_PREFIX + "hive.metastore.uri";
   private static final String[] HIVE_SUPPORTED_SCHEME = {"adl", "abfs", 
"hdfs"};
 
 Review comment:
   Is HIVE_SUPPORTED_SCHEME still needed?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to