Failed to %AddDeps HBase 1.3.1 from Jupyter-Toree-Scala



我在docker容器(https://github.com/jupyter/docker-stacks/tree/master/all-spark-notebook(中使用这个jupyter toree笔记本。

我尝试在笔记本中使用此%addDeps命令添加HBASE依赖项:

%AddDeps org.apache.hbase hbase 1.3.1 --transitive --verbose

似乎找到了所有依赖项,但我仍然得到此输出(空错误?

Magic AddDeps failed to execute with error: 
null

我随后无法调用import org.apache.hadoop.hbase,这意味着该库尚未安装。我真的很感激任何建议,谢谢。

我解决了这个问题。导入了错误的项目名称。应该%AddDeps org.apache.hbase hbase-client 1.2.0 --transitive

最新更新