我是PyES的新手,文档有点难读。
我想将数据编入ES,我看到了:
conn.index({"name":"Joe Tester", "parsedtext":"Joe Testere nice guy", "uuid":"11111", "position":1}, "test-index", "test-type", 1)
我获得了前2个args,但最后两个是什么?即“测试型”和1?哪些文档解释了与上述相关的索引的args?
答案 0 :(得分:2)
test-type - 它类似于NOSQL数据库中的集合,而在RDBMS中它就像数据库中的表一样。
最后一个参数" 1" 是document的唯一标识符。在RDBMS中是主键,在NOSQL中是_id ..