无法为 Mysql Apache Drill 创建存储插件
Unable to create Storage plugin for Mysql Apache Drill
在文档的帮助下:http://drill.apache.org/docs/rdbms-storage-plugin/ 我一直在尝试在 Apache Drill 中为 Mysql 创建一个存储插件,我尝试了多个 jdbc 驱动程序:mysql-connector-java-5.1.39-bin
, sqlserverjdbc
但我总是收到错误消息:
Please retry: error (unable to create/update storage)
我的配置如下:
{
"type":"jdbc",
"driver":"mysql-connector-java-5.1.39-bin",
"url":"jdbc:mysql://localhost:3306",
"username":"root",
"password":"password",
"enabled": true
}
有谁知道为什么它不起作用以及如何解决它?
提前致谢
PS:我看过这个 post SQL Server Storage Plugin not Working 但没有帮助
根据 docs 添加此插件。
{
"type": "jdbc",
"driver": "com.mysql.jdbc.Driver",
"url": "jdbc:mysql://localhost:3306",
"username": "root",
"password": "mypassword",
"enabled": true
}
注意:确保在 <drill-directory>/jars/3rdparty
中添加了 mysql-connector jar
在文档的帮助下:http://drill.apache.org/docs/rdbms-storage-plugin/ 我一直在尝试在 Apache Drill 中为 Mysql 创建一个存储插件,我尝试了多个 jdbc 驱动程序:mysql-connector-java-5.1.39-bin
, sqlserverjdbc
但我总是收到错误消息:
Please retry: error (unable to create/update storage)
我的配置如下:
{
"type":"jdbc",
"driver":"mysql-connector-java-5.1.39-bin",
"url":"jdbc:mysql://localhost:3306",
"username":"root",
"password":"password",
"enabled": true
}
有谁知道为什么它不起作用以及如何解决它? 提前致谢
PS:我看过这个 post SQL Server Storage Plugin not Working 但没有帮助
根据 docs 添加此插件。
{
"type": "jdbc",
"driver": "com.mysql.jdbc.Driver",
"url": "jdbc:mysql://localhost:3306",
"username": "root",
"password": "mypassword",
"enabled": true
}
注意:确保在 <drill-directory>/jars/3rdparty