elasticsearch批量api的默认“路由”参数是什么?

huus2vyu  于 2021-06-13  发布在  ElasticSearch
关注(0)|答案(1)|浏览(349)

从弹性文件: The default value used for _routing is the document’s _id (关于put api)
但是我找不到批量api文档的任何默认值
我应该设置吗 _routing 手动Map还是有默认值?

t8e9dugd

t8e9dugd1#

您需要在每个命令行中提供路由值

here
                                                   |
                                                   v
{ "index" : { "_index" : "test", "_id" : "1", "_routing": 123 } }
{ "field1" : "value1" }

相关问题