如何查看ElasticSearch索引的内容?

时间:2013-01-28 15:54:50

标签: elasticsearch

我配置了自定义分析器并将一些文档放入索引中。现在我想调试我的设置,这样我就可以看到哪些n-gram实际上已经成为索引。

当我之前使用Solr时,有可能看到索引中保存了哪些字符串作为键及其频率。

4 个答案:

答案 0 :(得分:9)

您可以使用以下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

答案 1 :(得分:6)

如果您尚未将太多数据索引到索引中,则可以在要调试的字段上使用术语构面查询来查看令牌及其频率:

curl -XDELETE 'http://localhost:9200/test-idx'
echo
curl -XPUT 'http://localhost:9200/test-idx' -d '
{
    "settings": {
        "index.number_of_shards" : 1,
        "index.number_of_replicas": 0
    },
    "mappings": {            
        "doc": {
            "properties": {
                "message": {"type": "string", "analyzer": "snowball"}
            }
        }
    }

}'
echo
curl -XPUT 'http://localhost:9200/test-idx/doc/1' -d '
{
  "message": "How is this going to be indexed?"
}
'
echo
curl -XPOST 'http://localhost:9200/test-idx/_refresh'
echo
curl -XGET 'http://localhost:9200/test-idx/doc/_search?pretty=true&search_type=count' -d '{
    "query": {
        "match": {
            "_id": "1"
        }
    },
    "facets": {
        "tokens": {
            "terms": {
                "field": "message"
            }
        }
    }
}
'
echo

答案 2 :(得分:3)

我可以推荐Elasticvue,它是现代,免费和开源的。它允许通过浏览器插件轻松访问ES实例(支持Firefox,Chrome,Edge)。但是还有其他方法。

只需确保您在elasticsearch.yml中适当设置了cors values

答案 3 :(得分:1)

您甚至可以添加术语的大小(索引术语)。看看Elastic Search: how to see the indexed data