Currently, the Apache Drill build process is known to work on Linux, Windows and OSX. To build, you need to have the following software installed on your system to successfully complete a build.
- Java 8
- Maven 3.3.1 or greater
# java -version
java version "1.8.0_161"
Java(TM) SE Runtime Environment (build 1.8.0_161-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.161-b12, mixed mode)
# mvn --version
Apache Maven 3.3.1 (cab6659f9874fa96462afef40fcf6bc033d58c1c; 2015-03-13T13:10:27-07:00)
git clone https://github.com/apache/drill.git
cd drill
mvn clean install
mkdir /opt/drill
tar xvzf distribution/target/*.tar.gz --strip=1 -C /opt/drill
cd /opt/drill
bin/sqlline -u jdbc:drill:zk=local -n admin -p admin
SELECT
employee_id,
first_name
FROM cp.`employee.json`;
For more information including how to run a Apache Drill cluster, visit the Apache Drill Documentation