Hello,
On WIndows 10 i want to query a JSON file from my Desktop, I installed
Drill and set the default folders with permissions as stated in the docs.
Also I issue the command from within /bin : drill-embedded i get the
following error:
java.io.FileNotFoundException: File /tmp/drill/sys.storage_plugins does not
exist
Also i issue the command :
sqlline -u jdbc:drill:drillbit=localhost:31010
I get the error :
InvalidConnectionInfoException: No drillbit information specified in the
connection string
Before the issuing of the latter i set the storage config in
storage-plugins-override.conf as follows (to use JSON files locally)
"storage": {
cp: {
type: "file",
connection: "file:///",
enabled:true,
formats: {
"csv" : {
type: "text",
extensions: [ "json" ],
delimiter: ","
}
}
}
}
It seems very difficult to start with this tool, pls provide more starting
infos..