我正在尝试将filter
中显示的val logFile = "/tmp/master.txt"
val sc = new JavaSparkContext("local[4]", "Twitter Analyzer", "/home/welcome/Downloads/spark-1.1.0/",Array("target/scala-2.10/Simple-assembly-0.1.0.jar"))
val twitterFeed = sc.textFile(logFile).cache()
while (iterator.hasNext) {
val value = iterator.next()
val numAs = twitterFeed.filter(line => line.contains(value))
numAs.saveAsTextFile("/tmp/output/positive/" + value)
}
添加到我的程序中:
[info] Compiling 1 Scala source to /home/siva/file1/target/scala-2.10/classes...
[error] /home/siva/file1/src/main/scala/com/chimpler/example/twitter/Tweet.scala:27: missing parameter type
[error] val numAs = twitterFeed.filter(line => line.contains(value))
[error] ^
[error] one error found
[error] (compile:compile) Compilation failed
[error] Total time: 5 s, completed 19 Sep, 2014 1:31:26 PM
我收到编译错误如下:
{{1}}
任何想法?
答案 0 :(得分:5)
As @groverboy advised in the comment您应该真正使用org.apache.spark.SparkContext。 Spark编程指南Initializing Spark对此也很清楚。
import org.apache.spark._
val conf = new SparkConf()
.setMaster("local[4]")
.setAppName("Twitter Analyzer")
.setSparkHome("/home/welcome/Downloads/spark-1.1.0/")
.setJars(Seq("target/scala-2.10/Simple-assembly-0.1.0.jar"))
val sc = new SparkContext(conf)
原因是Scala中的类型推断需要类型上下文来推断line
参数的类型。
val numAs = twitterFeed.filter(line => line.contains(value))
它明显属于String
类型,但使用Java版本的SparkContext - JavaSparkContext - 您只是丢失了类型信息。
如果您使用SparkContext
,上述行可以进一步简化为:
val numAs = twitterFeed.filter(_.contains(value))
甚至:
twitterFeed.filter(_ contains value)
所有的好东西都在SparkContext
之外。
答案 1 :(得分:3)
val numAs = twitterFeed.filter((i: String) => i.contains(value))
解决了这个问题。