我在弹性搜索数据生产中有1个索引用于存储文档。该索引在每个名为以下文件的文档中都有一个公共字段:document_type以过滤不同类型的数据。
a。 document_type =“ 用户”
b。 document_type =“ 用户详细信息”
{
"user_id" : "123",
"is_trial_active" : "true",
"updated_at" : "1577338950969",
"event_created_at" : "1577338950969",
"document_type" : "user"
}
{
"user_id" : "123",
"name" : "Shivam",
"gender" : "male",
"event_created_at" : 1575519449473,
"phone_number" : "+91-8383838383",
"document_type" : "user_detail",
"created_at" : 1576049770184
}
注
如何从is_trial_active在document_type =“ user”中不为真的document_type =“ user_details”获取用户的详细信息?
我在弹性搜索数据生产中有1个索引用于存储文档。该索引在每个名为:document_type的文档中都有一个公共字段,用于过滤不同类型的数据。我有2种类型的...
您可以使用has_parent
查询来检索子文档