我正在使用UBUNTU 14.04。
我已经开始探索使用apache钻查询HDFS,将其安装到我的本地系统并配置存储插件以指向远程HDFS。以下是配置设置:
{
"type": "file",
"enabled": true,
"connection": "hdfs://devlpmnt.mycrop.kom:8020",
"workspaces": {
"root": {
"location": "/",
"writable": false,
"defaultInputFormat": null
}
},
"formats": {
"json": {
"type": "json"
}
}
}
创建json文件“rest.json”后,我传递了查询:
select * from hdfs.`/tmp/rest.json` limit 1
我收到以下错误:
org.apache.drill.common.exceptions.UserRemoteException: PARSE ERROR: From line 1, column 15 to line 1, column 18: Table 'hdfs./tmp/rest.json' not found
如果有人试图帮助我找出问题所在,我将不胜感激。
提前致谢!!