Top 11 Apache Drill Interview Questions You Must Prepare 24.Apr.2024

  • JSON data model
  • On-the-fly schema discovery

  • Distributed query optimization and execution
  • Columnar Execution
  • Optimistic Execution
  • Pipelined Execution
  • Runtime compilation and code generation
  • Vectorization

Drill supports standard SQL (aka ANSI SQL). In addition, it features several extensions that help with complex data, such as the KVGEN and FLATTEN functions. For more details, refer to the SQL Reference.

Apache Drill is a Schema-free SQL Query Engine for Hadoop, NoSQL and Cloud Storage and it allows us to explore, visualize and query different datasets without having to fix to a schema using ETL and so on.

Apache Drill is also Analyse the multi-structured and nested data in non-relational data stores directly without restricting any data.

Apache Drill is the first distributed SQL query engine and it contains the schema free JSON model and its looks like -

  • Elastic Search
  • MongoDB
  • NoSQL database
  • And SO on

The Apache Drill is very useful for those professionals that already working with SQL databases and BI tools like Pentaho, Tableau, and Qlikview.

Also Apache Drill supports to -

  • RESTful,
  • ANSI SQL and
  • JDBC/ODBC drivers

Drill’s main focused on non-relational data stores, including Hadoop, NoSQL and cloud storage.

The following datastores are -

  • NoSQL - HBase and MongoDB
  • Cloud Storage - Amazon S3, Google Cloud Storage, Azure Blog Storage and Swift
  • Hadoop - MapR, CDH and Amazon EMR

Hive is a batch processing framework most suitable for long-running jobs. For data exploration and BI, Drill provides a much better experience than Hive.

In addition, Drill is not limited to Hadoop. For example, it can query NoSQL databases (eg, MongoDB, HBase) and cloud storage (eg, Amazon S3, Google Cloud Storage, Azure Blob Storage, Swift).

Drill uses a decentralized metadata model and relies on its storage plugins to provide metadata. There is a storage plugin associated with each data source that is supported by Drill.

The name of the table in a query tells Drill where to get the data:

SELECT * FROM dfs1.root.`/my/log/files/`;

SELECT * FROM dfs2.root.`/home/john/log.json`;

SELECT * FROM mongodb1.website.users;

SELECT * FROM hive1.logs.frontend;

SELECT * FROM hbase1.events.clicks;

The Spark SQL only supports a subset of SQL but Apache Drill supports ANSI SQL.

Querying data in Spark SQL with help of languages like Java, Scala or Python but Apache Drill querying data with helps of MySQL or Oracle.

  • BI tools via the ODBC and JDBC drivers (eg, Tableau, Excel, MicroStrategy, Spotfire, QlikView, Business Objects)
  • Custom applications via the REST API
  • Java and C applications via the dedicated Java and C libraries Comparisons