我试图在algebird软件包中使用QTree和QTreeSemigroup,但无法在spark-shell中导入它们。
我试过了两个:
spark-shell --jars ~/jars/algebird-core_2.10-0.1.11.jar
SPARK_CLASSPATH="~/jars/algebird-core_2.10-0.1.11.jar" spark-shell --jars ~/jars/algebird-core_2.10-0.1.11.jar
我可以成功导入这样的algebird:
import com.twitter.algebird._
但是当我尝试导入Qtree时,我发现他们不是algebird包的成员:
scala> import com.twitter.algebird.QTree
<console>:22: error: object QTree is not a member of package com.twitter.algebird
import com.twitter.algebird.QTree
^
scala> import com.twitter.algebird.QTreeSemigroup
<console>:22: error: object QTreeSemigroup is not a member of package com.twitter.algebird
import com.twitter.algebird.QTreeSemigroup
给出了什么?!有人见过这个吗?
答案 0 :(得分:0)
想出来,我使用的是旧版本的algebird。使用最新的。