elasticsearch 分页from+size 错误

在使用elasticsearch 分页查询时

elasticsearch 分页from+size 错误_第1张图片

报错如下:

{
  "error": {
    "root_cause": [
      {
        "type": "query_phase_execution_exception",
        "reason": "Result window is too large, from + size must be less than or equal to: [10000] but was [10020]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level setting."
      }
    ],
    "type": "search_phase_execution_exception",
    "reason": "all shards failed",
    "phase": "query",
    "grouped": true,
    "failed_shards": [
      {
        "shard": 0,
        "index": "aeko_dev",
        "node": "BhjlsSN0Qj-LU3f2XnHYmw",
        "reason": {
          "type": "query_phase_execution_exception",
          "reason": "Result window is too large, from + size must be less than or equal to: [10000] but was [10020]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level setting."
        }
      }
    ]
  },
  "status": 500
}

原因:elasticsearch 的max_result_window默认10000,大于10000就报错了

解决:

PUT aeko_dev/_settings
{
  "index":{
    "max_result_window":1000000
  }
}

 

你可能感兴趣的:(elasticsearch)