hi,我想在特定字段“ userId”上设置自定义路由,而不是手动传递。我想根据certian字段进行路由
说
myindex
{
city,
name
}
我已经看到路由值需要像
一样硬编码PUT my_index/my_type/1?routing=user1&refresh=true
{
"title": "This is a document"
}
无论如何,我可以使用路由值来依赖“字段”(例如标题),而不是硬编码“ user1”之类的值
类似
PUT my_index/my_type/1?routing=**title**&refresh=true
{
"title": "This is a document"
}