RethinkDB导入错误
RethinkDB import error
我正在尝试将 CSV 或 JSON 文件导入 Rethink DB,但我总是遇到同样的错误:
rethinkdb import -f ~/Downloads/convertcsv.json --table test.stats --format json
[ ] 0%
0 rows imported in 1 table
'indexes'
In file: /home/xxxxx/Downloads/convertcsv.json
Errors occurred during import
我在日志中没有看到任何内容,相同的文件在我的笔记本电脑上导入正常。
导入创建 table 但仅此而已。
我的系统:
- 项目清单
- Ubuntu 10.10
- Python 2.7.8
- rethinkdb 1.16.0+1~0utopic (GCC 4.9.1)
已经尝试重新安装 RethinkDB,sudo pip2 install --upgrade rethinkdb
。不知道我还能做什么。
这似乎是添加 export/import 二级索引时的一个疏忽 - 导入脚本正在寻找信息中的 indexes
字段,在导入单个文件时该字段不存在.这可以通过提供标志 --no-secondary-indexes
来解决。 RethinkDB Python 驱动程序版本 1.16.0-2
中发布了修复程序,请参阅 Github 问题 #3278 了解详细信息。
我正在尝试将 CSV 或 JSON 文件导入 Rethink DB,但我总是遇到同样的错误:
rethinkdb import -f ~/Downloads/convertcsv.json --table test.stats --format json
[ ] 0%
0 rows imported in 1 table
'indexes'
In file: /home/xxxxx/Downloads/convertcsv.json
Errors occurred during import
我在日志中没有看到任何内容,相同的文件在我的笔记本电脑上导入正常。 导入创建 table 但仅此而已。
我的系统: - 项目清单 - Ubuntu 10.10 - Python 2.7.8 - rethinkdb 1.16.0+1~0utopic (GCC 4.9.1)
已经尝试重新安装 RethinkDB,sudo pip2 install --upgrade rethinkdb
。不知道我还能做什么。
这似乎是添加 export/import 二级索引时的一个疏忽 - 导入脚本正在寻找信息中的 indexes
字段,在导入单个文件时该字段不存在.这可以通过提供标志 --no-secondary-indexes
来解决。 RethinkDB Python 驱动程序版本 1.16.0-2
中发布了修复程序,请参阅 Github 问题 #3278 了解详细信息。