Last active
February 26, 2021 08:20
-
-
Save yorek/35e2b693fb749f0388db22c2d814ddaf to your computer and use it in GitHub Desktop.
Configuration sample to use Azure Blob Store with Apache Drill. More info on Medium Post:
This file contains 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", | |
"connection": "wasbs://CONTAINER@ACCOUNT_NAME.blob.core.windows.net", | |
"config": null, | |
"workspaces": { | |
"root": { | |
"location": "/", | |
"writable": false, | |
"defaultInputFormat": null, | |
"allowAccessOutsideWorkspace": false | |
} | |
}, | |
"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\"" | |
}, | |
"parquet": { | |
"type": "parquet" | |
}, | |
"json": { | |
"type": "json", | |
"extensions": [ | |
"json" | |
] | |
}, | |
"pcap": { | |
"type": "pcap" | |
}, | |
"avro": { | |
"type": "avro" | |
}, | |
"sequencefile": { | |
"type": "sequencefile", | |
"extensions": [ | |
"seq" | |
] | |
}, | |
"csvh": { | |
"type": "text", | |
"extensions": [ | |
"csvh" | |
], | |
"extractHeader": true, | |
"delimiter": "," | |
}, | |
"image": { | |
"type": "image", | |
"extensions": [ | |
"jpg", | |
"jpeg", | |
"jpe", | |
"tif", | |
"tiff", | |
"dng", | |
"psd", | |
"png", | |
"bmp", | |
"gif", | |
"ico", | |
"pcx", | |
"wav", | |
"wave", | |
"avi", | |
"webp", | |
"mov", | |
"mp4", | |
"m4a", | |
"m4p", | |
"m4b", | |
"m4r", | |
"m4v", | |
"3gp", | |
"3g2", | |
"eps", | |
"epsf", | |
"epsi", | |
"ai", | |
"arw", | |
"crw", | |
"cr2", | |
"nef", | |
"orf", | |
"raf", | |
"rw2", | |
"rwl", | |
"srw", | |
"x3f" | |
] | |
} | |
}, | |
"enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment