我在ES中创建了一个文档。后来我想查询它,但是我忘记了类型,因此我无法完成命令。但是我还记得索引名称。
如何检索索引的类型名称?
答案 0 :(得分:1)
如果您知道索引名称,则可以使用以下命令快速检索索引中的所有映射类型:
curl -XGET 'http://localhost:9200/index_name/_mapping?pretty'
您将收到如下所示的回复:
{
"index_name": {
"mappings": {
"type_name": { <----- this is the type name you're looking for
"properties": {
...field definitions...
}
}
}
}
}