现在有两个index,都有名为tags的字段(名称相同,意义不同) ,加入了同一个alias,在查询的时候怎么只根据index_1的tags进行查询呢?或者不用alias,使用其他方式?
/index_1/type_name/_mapping
{
"type_name": {
"properties": {
"name_1": {
"type": "text"
},
"tags": {
"type": "text",
}
}
}
}
/index_2/type_name/_mapping
{
"type_name": {
"properties": {
"name_2": {
"type": "text"
},
"tags": {
"type": "text",
}
}
}
}
/index_1/type_name/_mapping
{
"type_name": {
"properties": {
"name_1": {
"type": "text"
},
"tags": {
"type": "text",
}
}
}
}
/index_2/type_name/_mapping
{
"type_name": {
"properties": {
"name_2": {
"type": "text"
},
"tags": {
"type": "text",
}
}
}
}
0 个回复