tree: f14490f69e5c1b9c6add3a769d46199900c64307 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
contrib/storage-drill/README.md

Apache Drill storage plugin

This storage plugin allows Drill to query other Drill clusters. Unlike the JDBC driver, this plugin doesn't produce extra conversions of input data and transfers it as is to the required operators. But similar to JDBC, it fetches data batches only when it is ready to process it to avoid memory issues.

Supported optimizations and features

Drill storage plugin supports push-down of all operators it has. It determines which parts of the query plan could be pushed down and converts them to SQL queries submitted to the underlying Drill cluster.

Configuration

Drill storage plugin has the following configuration properties:

  • type - storage plugin type, should be 'drill'
  • connection - JDBC connection string to connect to underlying Drill cluster. Please refer to Configuration page for more details
  • properties - Connection properties. Please refer to Configuration page for more details
  • credentialsProvider - credentials provider

Storage config example:

{
  "storage":{
    "drill" : {
      "type":"drill",
      "connection":"jdbc:drill:drillbit=localhost:31010",
      "enabled": false
    }
  }
}