Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java or C++ API for Apache Drill

I want to access Drill through a programming interface. The Apache Drill documentation just mentions about its JAVA and C++ libraries for the client to connect but doesn't provide any documentation or example for the same.

http://drill.apache.org/faq/#what-clients-are-supported?

http://drill.apache.org/docs/architecture-introduction/#drill-clients

The closest thing which I was able to find on the forums/documentations was to connect through the drill-JDBC driver. But it defeats the purpose of what I want to do. Does anyone has any idea where I can find more about these APIs and if they are actually there?

like image 786
nash Avatar asked May 27 '15 10:05

nash


People also ask

How do I know Apache Drill version?

You can also retrieve the version information by running the following query: SELECT * FROM sys. drillbits; If the version of Drill differs between nodes, a warning message appears.


1 Answers

They provide native C++ client.

Check querySubmitter example for more details.

like image 199
Dev Avatar answered Oct 05 '22 21:10

Dev