With apache drill 1.2, we can query over RDBMS data. Check more here: https://drill.apache.org/blog/2015/10/16/drill-1.2-released/
so, I tried to add a plugin for MySQL. I am doing it using the web client. I created a plugin with name mysql
and added following configurations:
{
"type": "jdbc",
"driver": "com.mysql.jdbc.Driver",
"uri": "jdbc:mysql://<IP>:3306/classicmodels",
"username": "root",
"password": "root",
"enabled": true
}
Also, I added mysql.jar
in /apache-drill-1.2.0/jars/3rdparty
It is showing error:
(Invalid JSON mapping)
Any pointer on this. Is there any documentation for that?