gpt4 book ai didi

elasticsearch - 如何查看 ElasticSearch 索引的内容?

转载 作者:行者123 更新时间:2023-11-29 02:43:09 28 4
gpt4 key购买 nike

我配置了一个自定义分析器并将一些文档放入索引中。现在我想调试我的设置,这样我就可以看到哪些 n-grams 确实进入了索引。

当我以前使用 Solr 时,可以查看哪些字符串作为键保存在索引中以及它们的频率。

最佳答案

您可以使用以下 CURL 查看任何现有索引。运行前请将index-name替换为您的真实姓名,它将按原样运行。

查看索引内容

curl -H 'Content-Type: application/json' -X GET https://localhost:9200/index_name?pretty

并且输出将包含一个索引(请参阅输出中的设置)及其映射,它看起来像下面的输出 -

{
"index_name": {
"aliases": {},
"mappings": {
"collection_name": {
"properties": {
"test_field": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
},
"settings": {
"index": {
"creation_date": "1527377274366",
"number_of_shards": "5",
"number_of_replicas": "1",
"uuid": "6QfKqbbVQ0Gbsqkq7WZJ2g",
"version": {
"created": "6020299"
},
"provided_name": "index_name"
}
}
}
}

查看该索引下的所有数据

curl -H 'Content-Type: application/json' -X GET https://localhost:9200/index_name/_search?pretty

关于elasticsearch - 如何查看 ElasticSearch 索引的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14565888/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com