Distributed SQL query engine for big data
Pull request Compare This branch is even with prestodb:master.
wenleix Avoid double counting dictionary when estimating stripe size
SliceDictionaryColumnWriter.getBufferedBytes() already contains
dictionary bytes.
Latest commit fa037a9 Jun 21, 2018
Permalink
Failed to load latest commit information.
.mvn Remove maven-buildtime-extension Oct 5, 2017
presto-accumulo [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-array [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-atop Close and let GC QueryRunners in tests Jun 19, 2018
presto-base-jdbc [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-benchmark-driver [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-benchmark Close MemoryLocalQueryRunner in benchmarks Jun 19, 2018
presto-benchto-benchmarks [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-blackhole Close and let GC QueryRunners in tests Jun 19, 2018
presto-cassandra [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-cli Update jline to 2.14.6 Jun 15, 2018
presto-client Preserve whether name is delimited in NamedTypeSignature Jun 20, 2018
presto-docs Fix formatting for zip_with documentation Jun 19, 2018
presto-example-http [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-geospatial-toolkit [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-geospatial Fix type check for ST_ExteriorRing Jun 20, 2018
presto-hive-hadoop2 Refactor AbstractTestHiveClientS3 to become file system generic Jun 21, 2018
presto-hive Avoid Class#newInstance() Jun 21, 2018
presto-jdbc Use VARCHAR and VARBINARY types for JDBC driver Jun 20, 2018
presto-jmx [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-kafka Close and let GC QueryRunners in tests Jun 19, 2018
presto-local-file [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-main Exclude broadcast exchanges from PushRemoteExchangeThroughAssignUniqueId Jun 21, 2018
presto-matching [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-memory-context [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-memory Update TestMemoryWorkerCrash to use AbstractTestQueryFramework Jun 15, 2018
presto-ml Disallow non-static @SqlFunction methods Jun 15, 2018
presto-mongodb Preserve whether name is delimited in NamedTypeSignature Jun 20, 2018
presto-mysql [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-orc Avoid double counting dictionary when estimating stripe size Jun 21, 2018
presto-parser Fix incorrectly allowed filter clause in conditional expressions Jun 17, 2018
presto-password-authenticators [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-plugin-toolkit Improve error message when access is denied for a view Jun 19, 2018
presto-postgresql [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-product-tests Use VARCHAR and VARBINARY types for JDBC driver Jun 20, 2018
presto-proxy Add Presto protocol proxy service Jun 14, 2018
presto-raptor Preserve whether name is delimited in NamedTypeSignature Jun 20, 2018
presto-rcfile [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-record-decoder [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-redis Close and let GC QueryRunners in tests Jun 19, 2018
presto-redshift [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-resource-group-managers [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-server-rpm Fix indentation Jun 14, 2018
presto-server [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-spi Fix method and parameter names in TypeSignature Jun 21, 2018
presto-sqlserver [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-teradata-functions [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-testing-server-launcher Avoid Class#newInstance() Jun 21, 2018
presto-tests Add support for a global total memory limit Jun 21, 2018
presto-thrift-connector-api Elide VariableWidthBlock null array if all values non-null Jun 19, 2018
presto-thrift-connector [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-thrift-testing-server [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-tpcds Cleanup closing of StatisticsAssertion in tests Jun 19, 2018
presto-tpch [maven-release-plugin] prepare for next development iteration Jun 14, 2018
presto-verifier [maven-release-plugin] prepare for next development iteration Jun 14, 2018
src Avoid Class#newInstance() Jun 21, 2018
.gitignore Add .editorconfig to .gitignore Jun 9, 2017
.travis.yml Run maven in batch mode for automation May 31, 2018
CONTRIBUTING.md New CLA form Apr 22, 2014
LICENSE Add LICENSE file Oct 1, 2013
README.md Fix README for JDK requirements Apr 5, 2018
mvnw Update Maven wrapper to 3.5.0 Apr 12, 2017
pom.xml Remove unused dependencies Jun 20, 2018

README.md

Presto Build Status

Presto is a distributed SQL query engine for big data.

See the User Manual for deployment instructions and end user documentation.

Requirements

  • Mac OS X or Linux
  • Java 8 Update 92 or higher (8u92+), 64-bit. Both Oracle JDK and OpenJDK are supported.
  • Maven 3.3.9+ (for building)
  • Python 2.4+ (for running with the launcher script)

Building Presto

Presto is a standard Maven project. Simply run the following command from the project root directory:

./mvnw clean install

On the first build, Maven will download all the dependencies from the internet and cache them in the local repository (~/.m2/repository), which can take a considerable amount of time. Subsequent builds will be faster.

Presto has a comprehensive set of unit tests that can take several minutes to run. You can disable the tests when building:

./mvnw clean install -DskipTests

Running Presto in your IDE

Overview

After building Presto for the first time, you can load the project into your IDE and run the server. We recommend using IntelliJ IDEA. Because Presto is a standard Maven project, you can import it into your IDE using the root pom.xml file. In IntelliJ, choose Open Project from the Quick Start box or choose Open from the File menu and select the root pom.xml file.

After opening the project in IntelliJ, double check that the Java SDK is properly configured for the project:

  • Open the File menu and select Project Structure
  • In the SDKs section, ensure that a 1.8 JDK is selected (create one if none exist)
  • In the Project section, ensure the Project language level is set to 8.0 as Presto makes use of several Java 8 language features

Presto comes with sample configuration that should work out-of-the-box for development. Use the following options to create a run configuration:

  • Main Class: com.facebook.presto.server.PrestoServer
  • VM Options: -ea -XX:+UseG1GC -XX:G1HeapRegionSize=32M -XX:+UseGCOverheadLimit -XX:+ExplicitGCInvokesConcurrent -Xmx2G -Dconfig=etc/config.properties -Dlog.levels-file=etc/log.properties
  • Working directory: $MODULE_DIR$
  • Use classpath of module: presto-main

The working directory should be the presto-main subdirectory. In IntelliJ, using $MODULE_DIR$ accomplishes this automatically.

Additionally, the Hive plugin must be configured with location of your Hive metastore Thrift service. Add the following to the list of VM options, replacing localhost:9083 with the correct host and port (or use the below value if you do not have a Hive metastore):

-Dhive.metastore.uri=thrift://localhost:9083

Using SOCKS for Hive or HDFS

If your Hive metastore or HDFS cluster is not directly accessible to your local machine, you can use SSH port forwarding to access it. Setup a dynamic SOCKS proxy with SSH listening on local port 1080:

ssh -v -N -D 1080 server

Then add the following to the list of VM options:

-Dhive.metastore.thrift.client.socks-proxy=localhost:1080

Running the CLI

Start the CLI to connect to the server and run SQL queries:

presto-cli/target/presto-cli-*-executable.jar

Run a query to see the nodes in the cluster:

SELECT * FROM system.runtime.nodes;

In the sample configuration, the Hive connector is mounted in the hive catalog, so you can run the following queries to show the tables in the Hive database default:

SHOW TABLES FROM hive.default;

Developers

We recommend you use IntelliJ as your IDE. The code style template for the project can be found in the codestyle repository along with our general programming and Java guidelines. In addition to those you should also adhere to the following:

  • Alphabetize sections in the documentation source files (both in table of contents files and other regular documentation files). In general, alphabetize methods/variables/sections if such ordering already exists in the surrounding code.
  • When appropriate, use the Java 8 stream API. However, note that the stream implementation does not perform well so avoid using it in inner loops or otherwise performance sensitive sections.
  • Categorize errors when throwing exceptions. For example, PrestoException takes an error code as an argument, PrestoException(HIVE_TOO_MANY_OPEN_PARTITIONS). This categorization lets you generate reports so you can monitor the frequency of various failures.
  • Ensure that all files have the appropriate license header; you can generate the license by running mvn license:format.
  • Consider using String formatting (printf style formatting using the Java Formatter class): format("Session property %s is invalid: %s", name, value) (note that format() should always be statically imported). Sometimes, if you only need to append something, consider using the + operator.
  • Avoid using the ternary operator except for trivial expressions.
  • Use an assertion from Airlift's Assertions class if there is one that covers your case rather than writing the assertion by hand. Over time we may move over to more fluent assertions like AssertJ.
  • When writing a Git commit message, follow these guidelines.