我正在使用 UBUNTU 14.04。
我已经开始探索使用 apache Drill 查询 HDFS,将其安装在我的本地系统上,并将 Storage 插件配置为指向远程 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
如果有人试图帮助我找出问题所在,我将不胜感激。
提前致谢!!