Scroll search doesn't seem to work on our cluster?
I'm using this request:
GET /my_index/_search?search_type=scroll&size=100
{
"query": {
"bool": {
"must": [
{
"match": {
"program_id": "276"
}
},
{
"term": {
"status": {
"value": "active"
}
}
}
]
}
}
}
And I'm getting this error:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "No search type for [scroll]"
}
],
"type": "illegal_argument_exception",
"reason": "No search type for [scroll]"
},
"status": 400
}