在文档的帮助下:http://drill.apache.org/docs/rdbms-storage-plugin/我一直在尝试在Apache Drill中为Mysql创建一个存储插件,我尝试了多个jdbc驱动程序:// parent directive
controller:(scope, element, attr){
this.method1 = function(){...}
}
// child directive
require:'^^primarySection'
link:function(scope, element, attrs, primarySectionCtrl){
..some code
primarySectionCtrl.method1();
..
}
,mysql-connector-java-5.1.39-bin
但是我总是得到错误:
sqlserverjdbc
我的配置如下:
Please retry: error (unable to create/update storage)
有谁知道它为什么不起作用以及如何解决它? 在adcance中感谢
PS:我已经看过这篇文章SQL Server Storage Plugin not Working,但没有帮助
答案 0 :(得分:3)
根据docs添加此插件。
{
"type": "jdbc",
"driver": "com.mysql.jdbc.Driver",
"url": "jdbc:mysql://localhost:3306",
"username": "root",
"password": "mypassword",
"enabled": true
}
注意:确保在<drill-directory>/jars/3rdparty