This is an automated email from the ASF dual-hosted git repository. dzamo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill-site.git
commit 53d454263ea8bd9657e21ff48d1f726e955796e0 Author: James Turton <[email protected]> AuthorDate: Wed Jan 19 15:00:48 2022 +0200 Add some sub headings to compiling-drill-from-source. --- .../develop-drill/010-compiling-drill-from-source.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_docs/en/developer-information/develop-drill/010-compiling-drill-from-source.md b/_docs/en/developer-information/develop-drill/010-compiling-drill-from-source.md index 4c39a5e..b645ac2 100644 --- a/_docs/en/developer-information/develop-drill/010-compiling-drill-from-source.md +++ b/_docs/en/developer-information/develop-drill/010-compiling-drill-from-source.md @@ -41,16 +41,22 @@ Build Apache Drill: mvn clean install -DskipTests +### Compiling for MapR environments + If you want to deploy Apache Drill on the MapR platform, include the `-Pmapr` option to build Drill under the MapR profile. mvn clean install -DskipTests -Pmapr +### Compiling for Hadoop 2 environments + **Introduced in release: 1.20** Drill updated its Hadoop client libraries to Hadoop 3 in release 1.17 leaving Hadoop 2 users unable to upgrade beyond Drill 1.16. As of Drill 1.20 it once again becomes possible to build Drill for deployment in an Hadoop 2 environment, by including the `-Phadoop-2` option to select the Hadoop 2 profile. mvn clean install -DskipTests -Phadoop-2 +### Build outputs + A tarball is built and appears in the distribution/target directory. Move the tarball to another directory for unpacking. Unpack the tarball and then connect to Drill and query sample data, or connect Drill to your data sources. * To connect Drill to your data sources, refer to [Connect to Data Sources]({{ site.baseurl }}/docs/connect-a-data-source-introduction) for instructions.
