Created
August 30, 2017 02:45
-
-
Save nitisht/0a1c994d4791e0ad6533800447c3ab7b to your computer and use it in GitHub Desktop.
Apache Drill S3 plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "file", | |
"enabled": true, | |
"connection": "s3a://lake", | |
"config": null, | |
"workspaces": { | |
"root": { | |
"location": "/", | |
"writable": false, | |
"defaultInputFormat": null | |
}, | |
"tmp": { | |
"location": "/tmp", | |
"writable": true, | |
"defaultInputFormat": null | |
} | |
}, | |
"formats": { | |
"psv": { | |
"type": "text", | |
"extensions": [ | |
"tbl" | |
], | |
"delimiter": "|" | |
}, | |
"csv": { | |
"type": "text", | |
"extensions": [ | |
"csv" | |
], | |
"delimiter": "," | |
}, | |
"tsv": { | |
"type": "text", | |
"extensions": [ | |
"tsv" | |
], | |
"delimiter": "\t" | |
}, | |
"httpd": { | |
"type": "httpd", | |
"logFormat": "%h %t \"%r\" %>s %b \"%{Referer}i\"", | |
"timestampFormat": null | |
}, | |
"parquet": { | |
"type": "parquet" | |
}, | |
"json": { | |
"type": "json", | |
"extensions": [ | |
"json" | |
] | |
}, | |
"avro": { | |
"type": "avro" | |
}, | |
"sequencefile": { | |
"type": "sequencefile", | |
"extensions": [ | |
"seq" | |
] | |
}, | |
"csvh": { | |
"type": "text", | |
"extensions": [ | |
"csvh" | |
], | |
"extractHeader": true, | |
"delimiter": "," | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment