从Apache Spark加载PrestoDB表

时间:2018-02-27 14:29:36

标签: apache-spark apache-spark-sql teradata presto

我在将Presto数据库中的表/视图数据加载到Spark时遇到问题。

 val prestoDriver = "com.teradata.presto.jdbc42.Driver"

val df = spark.read.format("jdbc").option("url", prestoURL).option("LogLevel",6).option("driver", prestoDriver)
                  .option("user", "xx").option("SSLTrustStorePath", "/xxx.jks")
                  .option("AuthenticationType","LDAP Authentication").option("password", "").option("SSL",1).option("SSLTrustStorePwd", "xxx")
                  .option("dbtable", "<select query with where clause>")
                  .load()

在Presto控制台中,我能够看到相应的查询,但是查询会在1小时后超时,但是出现错误:

com.facebook.presto.spi.PrestoException: Query 20180227_080921_03220_n5vdh has not been accessed since 2018-02-27T08:57:11.162Z: currentTime 2018-02-27T09:02:11.645Z
    at com.facebook.presto.execution.SqlQueryManager.failAbandonedQueries(SqlQueryManager.java:584)
    at com.facebook.presto.execution.SqlQueryManager$1.run(SqlQueryManager.java:180)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    at java.lang.Thread.run(Thread.java:745)

任何我的Spark任务都无限期地运行而没有任何进展。看起来Spark中使用的Presto Teradata驱动程序没有联系到Presto以在查询完成后获取结果。

任何人都可以对此有所了解吗?

由于

1 个答案:

答案 0 :(得分:0)

我可以确认你的语法(确切地)正在我的presto实例上工作(v0.195)。也许我们唯一的区别是我没有使用ldap presto插件但是创建了我自己的密码插件。