我的ElasticSearch索引中有哪些字段?

时间:2015-03-24 09:56:00

标签: elasticsearch

我运行了转化计划catmandu,并将结果发送到elasticsearch。我是弹性搜索的新手。你知道我怎么能在elasticsearch中为sqlite3找到类似'.schema'的东西吗?我想知道那里有哪些字段。

今天早上搜索后,如果我不提前知道这些字段,就无法找到能告诉我字段的东西。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

使用映射API获取索引的当前映射。这将显示已编入索引的所有字段:

curl -XGET "http://localhost:9200/{yourIndex}/_mapping"