2025-01-14 08:56AM
可以使用 curl 命令来查询
curl -X GET "http://localhost:9200/your_index_name/_count"
curl -X GET:使用 GET 方法发送请求。
http://localhost:9200:Elasticsearch 的地址和端口。
your_index_name:要查询的索引名称,你可以将其替换为你实际的索引名称。
_count:这个端点用于统计索引中的文档数量。
eg:
$ curl -X GET "http://localhost:9200/data/_count"
{"count":3600,"_shards":{"total":1,"successful":1,"skipped":0,"failed":0}}
_shards
:显示查询涉及的分片信息,包括总分片数、成功分片数、跳过的分片数和失败的分片数。
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论