gpt4 book ai didi

scala - 对象流不是包 org.apache.spark 的成员

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

我正在尝试编译一个简单的 scala 程序,我正在使用 StreamingContext ,这是我的代码片段:

import org.apache.spark.SparkConf
import org.apache.spark.SparkContext
import org.apache.spark.scheduler.SparkListener
import org.apache.spark.scheduler.SparkListenerStageCompleted
import org.apache.spark.streaming.StreamingContext._ //error:object streaming is not a member of package org.apache.spark
object FileCount {
def main(args: Array[String]) {
val conf = new SparkConf()
.setAppName("File Count")
.setMaster("local")

val sc = new SparkContext(conf)
val textFile = sc.textFile(args(0))
val ssc = new StreamingContext(sc, Seconds(10)) //error : not found: type StreamingContext
sc.stop()
}
}

我有这两个错误:
object streaming is not a member of package org.apache.spark


not found: type StreamingContext

任何帮助请!

最佳答案

您需要将 spark-streaming 的依赖添加到您的构建管理器中。

关于scala - 对象流不是包 org.apache.spark 的成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36421571/

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