//设置最大行数
PUT _all/_settings?preserve_existing=true
{
"index.max_result_window" : "2000000000"
}
//设置当前索引显示记录数
GET /test01/doc/_search
{
"query":{"match_all":{}},
"from": 0,
"size": 200000
}
//设置最大行数
PUT _all/_settings?preserve_existing=true
{
"index.max_result_window" : "2000000000"
}
//设置当前索引显示记录数
GET /test01/doc/_search
{
"query":{"match_all":{}},
"from": 0,
"size": 200000
}
>