[
https://issues.apache.org/jira/browse/DRILL-1545?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14174010#comment-14174010
]
Jason Altekruse commented on DRILL-1545:
----------------------------------------
We should go through and make sure that the fix for this issue covers all of
the storage formats.
> Json files can only be read when they have a .json extension
> ------------------------------------------------------------
>
> Key: DRILL-1545
> URL: https://issues.apache.org/jira/browse/DRILL-1545
> Project: Apache Drill
> Issue Type: Bug
> Reporter: Jason Altekruse
>
> It seems that Drill can only discover json data if the file extension is
> .json.
> We have tried to add the file extension.log as type json in the Storage
> Plugin (and validated the json) , but without success.
> Would be great if somebody can share a example config or has an idea.
> Storage Plugin Configuration.
> {
> "type": "file",
> "enabled": true,
> "connection": "maprfs:///",
> "workspaces": {
> "root": {
> "location": "/",
> "writable": false,
> "storageformat": null
> },
> "tmp": {
> "location": "/tmp",
> "writable": true,
> "storageformat": "csv"
> }
> },
> "formats": {
> "log": {
> "type": "json",
> "extensions": [
> "log"
> ]
> },
> "psv": {
> "type": "text",
> "extensions": [
> "tbl"
> ],
> "delimiter": "|"
> },
> "csv": {
> "type": "text",
> "extensions": [
> "csv"
> ],
> "delimiter": ","
> },
> "tsv": {
> "type": "text",
> "extensions": [
> "tsv"
> ],
> "delimiter": "\t"
> },
> "parquet": {
> "type": "parquet"
> },
> "json": {
> "type": "json"
> }
> }
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)