Write Drill query output to csv (or some other format)

半腔热情 提交于 2019-12-18 04:47:10

问题


I'm using drill in embedded mode, and I can't figure out how to save query output other than copy and pasting it.


回答1:


If you're using sqlline, you can create a new table as CSV as follows:

use dfs.tmp; 
alter session set `store.format`='csv';
create table dfs.tmp.my_output as select * from cp.`employee.json`;

Your CSV file(s) will appear in /tmp/my_output.




回答2:


You can specify !record <file_path> to save all output to particular file. Drill docs




回答3:


If you are using SQLLINE use !record .

If you are using a set of queries, you need to specify the exact schema to use. This can be done using th Use schema command. Unfortunately, you must also not use your root schema. Ensure that you have created the correct directory on your file system and use the proper storage configuration as well. An example configuration is below. After this, you can create a csv via java using the SQL driver, or in a tool such as Pentaho to generate a CSV. With the proper specification, it is possible to use the REST query tool at localhost:8047/query as well. The query to produce a csv at /out/data/csv is below after the configuration example.

Storage Configuration

{
  "type": "file",
  "enabled": true,
  "connection": "file:///",
  "config": null,
  "workspaces": {
    "root": {
      "location": "/out",
      "writable": false,
      "defaultInputFormat": null
    },
    "jsonOut": {
      "location": "/out/data/json",
      "writable": true,
      "defaultInputFormat": "json"
    },
    "csvOut": {
      "location": "/out/data/csv",
      "writable": true,
      "defaultInputFormat": "csv"
    }
  },
  "formats": {
    "json": {
      "type": "json",
      "extensions": [
        "json"
      ]
    },
    "csv": {
      "type": "text",
      "extensions": [
        "csv"
      ],
      "delimiter": ","
    }
  }
}

Query

USE fs.csvOut;
ALTER SESSION SET `store.format`='csv';
CREATE TABLE fs.csvOut.mycsv_out
AS SELECT * FROM fs.`my_records_in.json`;

This will produce at least one CSV and possibly many with different header specifications at /out/data/csv/mycsv_out.

Each file should follow the following format:

\d+_\d+_\d+.csv

Note: While the query result can be read as a single CSV the resulting CSVs (if there are more than one) cannot as the number of headers will vary. Drop the file as a Json file and read with code or later with Drill or another tool if this is the case.




回答4:


UPDATE: REDIRECTING APACHE DRILL SHELL OUTPUT TO A CSV FILE

It's now early 2018, and for some of you (particularly Apache Drill in MAPR), the above commands DON'T work. If that's the case, try the following. As of 2018 03 02 this DOES work on MapR 5.2 and Mapr 6 :-)

NOTE: I'm using "//" to denote comments alongside actual commands...
NOTE: I'm using "=>" to denote the RESPONSE of the shell to the command...

//FROM INSIDE A DRILL SHELL (ie "SQLLINE")...
//first set the "outputformat" session (shell) variables...

!set outputformat 'csv'

=> you see some output from the shell echoing back the new value...

//next begin "recording" any output to a file...

!record '/user/user01/query_output.csv'

=> again you see some output from the shell echoing that "recording" is ON...

//next actually submit (say) a SELECT query, whose output will now be CSV (even to the screen), as opposed to "TABLE" format...

SELECT * FROM hive.orders;

=> output (formatted as CSV) will begin streaming to both the screen and the file you specified...

//finally you turn OFF the "recording", so the csv file closes...

!record

THAT'S IT - you're DONE ! :-) Now you can either process that CSV where it lies in the CLUSTER storage, or - if you have a need - TRANSFER that file OUT of the cluster and into (say) some other server that has Tableau, Kabana, PowerBI Desktop or some other visualization tools for further analysis.



来源:https://stackoverflow.com/questions/31014910/write-drill-query-output-to-csv-or-some-other-format

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!