[ https://issues.apache.org/jira/browse/DRILL-5365?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16494527#comment-16494527 ]
ASF GitHub Bot commented on DRILL-5365: --------------------------------------- ilooner commented on a change in pull request #796: DRILL-5365: DrillFileSystem setConf in constructor. DrillFileSystem c… URL: https://github.com/apache/drill/pull/796#discussion_r191614286 ########## File path: exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/FileSystemPlugin.java ########## @@ -74,6 +74,7 @@ public FileSystemPlugin(FileSystemConfig config, DrillbitContext context, String fsConf.set(s, config.config.get(s)); } } + fsConf.set("fs.default.name", config.connection); Review comment: Doing a quick google it looks like you are correct. **fs.default.name** is deprecated and we should use **fs.defaultFS** instead https://stackoverflow.com/questions/30480847/difference-between-fs-defaultfs-and-fs-default-name?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa. Also hortonworks dropped **fs.default.name** from Ambari a long time ago so we should be safe https://issues.apache.org/jira/browse/AMBARI-2789 . I will remove this extra configuration. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > FileNotFoundException when reading a parquet file > ------------------------------------------------- > > Key: DRILL-5365 > URL: https://issues.apache.org/jira/browse/DRILL-5365 > Project: Apache Drill > Issue Type: Bug > Components: Storage - Hive > Affects Versions: 1.10.0 > Reporter: Chun Chang > Assignee: Timothy Farkas > Priority: Major > Fix For: 1.14.0 > > > The parquet file is generated through the following CTAS. > To reproduce the issue: 1) two or more nodes cluster; 2) enable > impersonation; 3) set "fs.default.name": "file:///" in hive storage plugin; > 4) restart drillbits; 5) as a regular user, on node A, drop the table/file; > 6) ctas from a large enough hive table as source to recreate the table/file; > 7) query the table from node A should work; 8) query from node B as same user > should reproduce the issue. -- This message was sent by Atlassian JIRA (v7.6.3#76005)