Hi;
I am trying to configure a jdbc storage plugin by using avatica remote drive as
follows:
{
"type": "jdbc",
"driver": "org.apache.calcite.avatica.remote.Driver",
"url": "jdbc:avatica:remote:url=http://localhost:8082/druid/v2/sql/avatica/",
"username": "root",
"password": "mypassword",
"enabled": true
}
whereas on localhost I have installed druid (http://druid <http://druid/>.io)
which listen on 8082 for sql requests.
However the sql connection cant be established because drill send first an
avatica synchConnection request instead of avatica openConnection.
If I am using a java client with avatica 1.10.0 version everything is working
fine.
I noticed also on druid there is calcite-avatica-1.4.0-r23 version which might
be not in synch with 1.10.0.
Is there anything that I could do in order to fix this setup?
Thanks