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

后端 未结 5 1324
没有蜡笔的小新
没有蜡笔的小新 2020-12-17 23:27

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

相关标签:
5条回答
  • 2020-12-17 23:29

    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.

    0 讨论(0)
  • 2020-12-17 23:38

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

    0 讨论(0)
  • 2020-12-17 23:40

    To set the output of a query in drill-embededd you need to create a table in the tmp schema first. Let's say you want to extract the first 5 rows of a parquet file input_file.parquet in your home folder and set the output to output_file.parquet

    CREATE TABLE dfs.tmp.`output_file.parquet`
    AS 
    (
     SELECT *
     FROM dfs.`/Users/your_user_name/input_file.parquet`
     LIMIT 5
    );
    

    File will be saved as /tmp/output_file.parquet.

    You can check the result inside drill with

    SELECT * 
    FROM dfs.tmp.`output_file.parquet`;
    
    0 讨论(0)
  • 2020-12-17 23:49

    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.

    0 讨论(0)
  • 2020-12-17 23:50

    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.

    0 讨论(0)
提交回复
热议问题