I need to access data in my crate database via Apache Drill. Far as i have read, crate has a PostgreSQL interface, but that is not compatible with the PostgreSQL interface exposed by drill. There isn't much information on this available on the internet. One way to go about it is implementing a custom storage plugin. But did not find helpful information about that either. i went through this, but not to much avail. Any insights, references, links, information is appreciated.
Another way i tried connecting to crate via apache drill was using the storage configuration:
{
type: "jdbc",
enabled: true,
driver: "io.crate.client.jdbc.CrateDriver",
url:"jdbc:crate://localhost:5432/"
}
and jars: crate-jdbc-1.9.1.jar and crate-jdbc-standalone-2.2.0.jar
This did not work for me either.