gpt4 book ai didi

scala - Spark-submit Sql Context Create语句不起作用

转载 作者:行者123 更新时间:2023-12-03 03:36:38 25 4
gpt4 key购买 nike

我的以下代码不适用于 Spark-submit。

sqlContext.sql(s"""
create external table if not exists landing (
date string,
referrer string)
partitioned by (partnerid string,dt string)
row format delimited fields terminated by '\t' lines terminated by '\n'
STORED AS TEXTFILE LOCATION 's3n://....'
""")

它给出错误:线程“main”中的异常 java.lang.RuntimeException:[1.2] 失败:预期为“with”,但找到了标识符创建

此代码在 Spark-shell 中有效,但在 Spark-submit 中无效。可能是什么原因?

最佳答案

spark-shell 中的“sqlContext”默认为“HiveContext”。也许您需要在脚本中新建 HiveContext 而不是 sqlContext。

你可以像这样新建它:

import SparkContext._
import org.apache.spark.sql.hive._
val sc = new SparkContext()
val sqlContext = new HiveContext(sc)

关于scala - Spark-submit Sql Context Create语句不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32056829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com