其他分享
首页 > 其他分享> > presto jdbc连接测试

presto jdbc连接测试

作者:互联网

版本:0.266


  1. 添加依赖
<dependency>
    <groupId>com.facebook.presto</groupId>
    <artifactId>presto-jdbc</artifactId>
    <version>0.266.1</version>
</dependency>
  1. 连接

支持以下几种格式:

# 可通过properties.setProperty配置catalog、schema
jdbc:presto://host:port    
jdbc:presto://host:port/catalog
jdbc:presto://host:port/catalog/schema

host 为 coordinator 所在服务器名称

port 为 presto 目录下 etc/config.propertieshttp-server.http.port 的配置值

  1. 连接示例
import java.sql.*;
import java.util.Properties;

public class ConnTest {
    public static void main(String[] args) throws SQLException {

        String url = "jdbc:presto://bigdata101:8881/hive/default";
        Connection connection = DriverManager.getConnection(url, "root", null);
        Statement statement = connection.createStatement();

        ResultSet rs = statement.executeQuery("select * from order_table_s");
        while(rs.next()){
            String product_name = rs.getString("product_name");
            int price = rs.getInt("price");
            System.out.println("product_name: " + product_name + " price:" + price);
        }

        statement.close();
        connection.close();

    }
}

  1. 连接参数含义

官网原文含完整的解释

  1. 遇到的问题

在测试官网的连接参数示例时,出现 Unsupported or unrecognized SSL message 异常。

这里有详细解释。

如果没有配置 SSL and LDAP authentication,就可以把 properties.setProperty("password", "secret"); 删掉。


来自官网:https://prestodb.io/docs/0.266/installation/jdbc.html

标签:product,jdbc,name,presto,host,测试,port
来源: https://www.cnblogs.com/wasaier/p/15753589.html