SqlContext 不是包 org.apache.spark.sql 的成员



这是我的build.sbt文件:

name := "words"
version := "1.0"
scalaVersion := "2.10.4"
libraryDependencies ++= Seq(
  "org.apache.spark" %% "spark-core" % "1.3.0",
  "org.apache.spark" %% "spark-sql"  % "1.3.0"
)

sbt.version=0.13.8-RC1

当我编译程序时,我有以下错误:

    [error] D:projectsbdwordssrcmainscalatest.scala:8: 
            type SqlContext is not a member of package org.apache.spark.sql
    [error]     val sqlContext = new org.apache.spark.sql.SqlContext(sc)
    [error]                                               ^
    [error] one error found
    [error] (compile:compileIncremental) Compilation failed

SQLContext不是SqlContext.

相关内容

  • 没有找到相关文章

最新更新