点燃上下文创建时出错
Error in ignite context creation
您好,我刚刚开始探索 Apache-Ignite,最初在创建 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
谁能帮我解决这个错误。谢谢
根据 task.
Ignite 1.7 中删除了类型参数
改成
val ic = new IgniteContext(sc, () => new IgniteConfiguration())
您好,我刚刚开始探索 Apache-Ignite,最初在创建 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
谁能帮我解决这个错误。谢谢
根据 task.
Ignite 1.7 中删除了类型参数改成
val ic = new IgniteContext(sc, () => new IgniteConfiguration())