You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Kunal Khatua (JIRA)" <ji...@apache.org> on 2018/05/31 17:23:00 UTC

[jira] [Resolved] (DRILL-2610) Local File System Storage Plugin

     [ https://issues.apache.org/jira/browse/DRILL-2610?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kunal Khatua resolved DRILL-2610.
---------------------------------
       Resolution: Fixed
    Fix Version/s:     (was: Future)

Creating a storage plugin with {{"connection": "file:///"}} will automatically point to the local file system.

{code:language=json}
{
  "type": "file",
  "enabled": true,
  "connection": "file:///",
  "config": null,
  "workspaces": {
    "root": {
      "location": "/",
      "writable": false,
      "defaultInputFormat": null,
      "allowAccessOutsideWorkspace": false
    },
    "tmp": {
      "location": "/tmp",
      "writable": true,
      "defaultInputFormat": "csv",
      "allowAccessOutsideWorkspace": false
    }
  },
  "formats": {
    "psv": {
      "type": "text",
      "extensions": [
        "tbl"
      ],
      "delimiter": "|"
    },
    "dsv": {
      "type": "text",
      "extensions": [
        "dat"
      ],
      "delimiter": "|"
    },
    "csv": {
      "type": "text",
      "extensions": [
        "csv"
      ],
      "delimiter": ","
    },
    "tsv": {
      "type": "text",
      "extensions": [
        "tsv"
      ],
      "delimiter": "\t"
    },
    "parquet": {
      "type": "parquet"
    },
    "json": {
      "type": "json",
      "extensions": [
        "json",
        "drill"
      ]
    },
    "abc": {
      "type": "json",
      "extensions": [
        "abc"
      ]
    },
    "maprdb": {
      "type": "maprdb"
    }
  }
}
{code}

> Local File System Storage Plugin
> --------------------------------
>
>                 Key: DRILL-2610
>                 URL: https://issues.apache.org/jira/browse/DRILL-2610
>             Project: Apache Drill
>          Issue Type: New Feature
>          Components: Storage - Other
>    Affects Versions: 0.8.0
>            Reporter: Sudheesh Katkam
>            Priority: Major
>
> Create a storage plugin to query files on the local file system on the nodes in the cluster. For example, users should be able to query log files in /var/log/drill/ on all nodes.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)