0

目前,我正在尝试使用 Python 的 Pixiedust 包将数据从笔记本中存储到 Cloudant DB 中。建立连接后,尝试将数据插入数据库时​​出现此错误。

nPy4JJavaError: An error occurred while calling o172.save.
: org.apache.spark.SparkException: Job aborted due to stage failure: Task 3 in stage 38.0 failed 10 times, most recent failure: '
Lost task 3.9 in stage 38.0 (TID 1811, yp-spark-dal09-env5-0046): spray.http.IllegalUriException: The path of an URI without authority must not begin with "//"

请告诉我如何将数据从笔记本存储到 Cloudant DB?

4

1 回答 1

0

此问题已得到解决,并且新版本的 PixieDust 已上传到 PyPI。您可以通过发出以下命令在笔记本中下载最新版本:

!pip install --user --upgrade --no-deps pixiedust

升级完成后重新启动内核。

您可以通过运行以下命令来验证您的 PixieDust 版本(已在 0.40 版中修复):

!pip show pixiedust

输出应类似于以下内容:

---
Metadata-Version: 1.0
Name: pixiedust
Version: 0.40
Summary: Misc helpers for Spark Python Notebook
Home-page: https://github.com/ibm-cds-labs/pixiedust
Author: David Taieb
Author-email: david_taieb@us.ibm.com
License: Apache 2.0
Location: /gpfs/global_fs01/sym_shared/YPProdSpark/user/sc7c-6877c2673165c0-9db077469d48/.local/lib/python2.7/site-packages
Requires: maven-artifact, mpld3
Classifiers:
于 2016-10-13T21:29:06.490 回答