作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下是我的索引方式:
conn = ES(['127.0.0.1:9200'],bulk_size=bulk_count)
conn.index(tj,data['index'],data['type'],str(uuid4()),bulk=True)
最佳答案
如果未设置ID,elasticsearch将自动为该文档生成一个ID。它将是UUID-1,出于性能方面的考虑会更好。
证明链接:
1. https://www.elastic.co/guide/en/elasticsearch/guide/current/indexing-performance.html#_other
2. http://blog.mikemccandless.com/2014/05/choosing-fast-unique-identifier-uuid.html
因此,最好的选择-使用零填充的顺序ID。
关于elasticsearch - 使用pyes,如何让elasticsearch选择索引ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27140850/
我是一名优秀的程序员,十分优秀!