George Chow created DRILL-879: --------------------------------- Summary: SHOW FILES does not work correctly for non-default DFS workspaces Key: DRILL-879 URL: https://issues.apache.org/jira/browse/DRILL-879 Project: Apache Drill Issue Type: Bug Reporter: George Chow
Given a storage-plugsins.json that looks like the following: {code} "storage":{ dfs: { type: "file", connection: "maprfs:///", workspaces: { "MFS root" : { location: "/mapr/summit-drill/JSON", writable: false }, "JSON-files" : { location: "/JSON", writable: false } }, {code} SHOW FILES of dfs.default and dfs.JSON-files should be different. But they're not. {code} 0: jdbc:drill:zk=localhost:5181> show files from `dfs.default`.`/`; +------------+-------------+------------+------------+------------+------------+-------------+-+ | name | isDirectory | isFile | length | owner | group | permissions | | +------------+-------------+------------+------------+------------+------------+-------------+-+ | etc | true | false | 4096 | root | root | rwxr-xr-x | | | tmp | true | false | 4096 | root | root | rwxrwxrwt | | | boot | true | false | 4096 | root | root | rwxr-xr-x | | | mavenoutput.txt | false | true | 333790 | root | root | rw-r--r- | | RPMS | true | false | 4096 | root | root | rwxr-xr-x | | | sys | true | false | 0 | root | root | rwxr-xr-x | | ... | media | true | false | 4096 | root | root | rwxr-xr-x | | | opt | true | false | 4096 | root | root | rwxr-xr-x | | +------------+-------------+------------+------------+------------+------------+-------------+-+ 27 rows selected (0.394 seconds) {code} {code} 0: jdbc:drill:zk=localhost:5181> show files from `dfs.JSON-files`.`/`; +------------+-------------+------------+------------+------------+------------+-------------+-+ | name | isDirectory | isFile | length | owner | group | permissions | | +------------+-------------+------------+------------+------------+------------+-------------+-+ | etc | true | false | 4096 | root | root | rwxr-xr-x | | | tmp | true | false | 4096 | root | root | rwxrwxrwt | | | boot | true | false | 4096 | root | root | rwxr-xr-x | | | mavenoutput.txt | false | true | 333790 | root | root | rw-r--r- | | RPMS | true | false | 4096 | root | root | rwxr-xr-x | | | sys | true | false | 0 | root | root | rwxr-xr-x | | ... | media | true | false | 4096 | root | root | rwxr-xr-x | | | opt | true | false | 4096 | root | root | rwxr-xr-x | | +------------+-------------+------------+------------+------------+------------+-------------+-+ 27 rows selected (0.347 seconds) {code} -- This message was sent by Atlassian JIRA (v6.2#6252)