登录 主页

elasticsearch 查询一条已经导入的数据(什么条件都不加,随机取一条数据)

2025-03-22 04:00PM

使用 random_score 查询

$ curl -X GET "http://localhost:9200/data/_search?pretty" -H 'Content-Type: application/json' -d'
{
  "size": 1,
  "query": {
    "function_score": {
      "random_score": {}
    }
  }
}'

size: 1:表示只返回一条文档。

random_score:为文档分配随机分数。

 响应示例:

{
  "took": 10,
  "timed_out": false,
  "_shards": {
    "total": 5,
    "successful": 5,
    "skipped": 0,
    "failed": 0
  },
  "hits": {
    "total": {
      "value": 100,
      "relation": "eq"
    },
    "max_score": 0.12345,
    "hits": [
      {
        "_index": "data",
        "_type": "_doc",
        "_id": "abc123",
        "_score": 0.12345,
        "_source": {
          "user": "john_doe",
          "message": "Hello, world!"
        }
      }
    ]
  }
}

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论