This knowledge base article will review Presto, an open source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto was designed and written from the ground up for interactive analytics and approaches the speed of commercial data warehouses while scaling to the size of large organizations. To put this in perspective, imagine companies like Apple or Facebook.
The following steps cover how to connect to Presto via SSL in Strategy.
(presto-jdbc-0.189.jar rename it to presto-jdbc.jar)
Note: Please avoid placing multiple driver files for different versions in the folder. Ensure to leave only the one driver which should be used. Others could be moved to other folders. You can obtain the driver here .
JDBC;DRIVER=com.facebook.presto.jdbc.PrestoDriver;URL={jdbc:presto://ec2-184-72-119-27.compute-1.amazonaws.com:7443/hive/labstuto?SSL=true&SSLTrustStorePath=C:/keys/truststore.jks&SSLTrustStorePassword=presto};The following example shows how to connect to Presto using JDBC via SSL in Developer:


(This won't be necessary as we will be using SSL. Use the SSL configured password for the credentials here.)







It is recommend to use Select Tables to reduce joins on the driver side for best performance.

(Change '#?DATABASE_NAME?#' to corresponding database .eg. 'labstuto').
