I am unable to delete the documents from an index having the maximum number of documents (2147483519).
getting the below exception. Please help me to get this resolved.
"cause" : {
"type" : "illegal_argument_exception",
"reason" : "number of documents in the index cannot exceed 2147483519"
}
below is the query
POST logs-68-2425/_delete_by_query
{
"query": {
"range": {
"@timestamp": {
"lt": 1602374400000,
"format": "epoch_millis"
}
}
}
}