点燃上下文创建时出错

时间:2016-12-26 11:12:33

标签: apache-spark ignite

您好我刚开始探索Apache-Ignite并且最初在点燃上下文创建时遇到错误 -

import org.apache.ignite.spark._
import org.apache.ignite.configuration._
val ic = new IgniteContext[Integer, Integer](sc, () => new IgniteConfiguration())
#Error:
 <console>:30: error: org.apache.ignite.spark.IgniteContext does not take type parameters
   val ic = new IgniteContext[Integer, Integer](sc, () => new IgniteConfiguration())

但互联网上的每一个地方都有效(正如在提供的示例中所示)。

版本 - apache-ignite-1.8.0-src,spark-2.0.2-bin-hadoop2.7

我正在通过

启动shell
./bin/spark-shell  --packages org.apache.ignite:ignite-spark:1.7.0, org.apache.ignite:ignite-spring:1.8.0 --master local  --repositories http://repo.maven.apache.org/maven2/org/apache/ignite

有人可以帮我解决这个错误。感谢。

1 个答案:

答案 0 :(得分:0)

根据task

在Ignite 1.7中删除了类型参数

只需改为 val ic = new IgniteContext(sc, () => new IgniteConfiguration())