I can't seem to get a delete query (ANY delete query) to actually delete anything. I've even tried the basic ones in the documentation (edited for my test index) and they don't work either. What am I overlooking?
I'm running the query below:
POST incode_index/_delete_by_query
{
"query": {
"bool": {
"must": [
{ "term" : { "EventID" : "5156"}},
{ "term" : { "DestAddress" : "172.xx.xx.xx"}},
{ "term" : { "Application" : "\device\harddiskvolume3\program files (x86)\nxlog\nxlog.exe"}}
]
}
}
}
I'm getting the following results:
{
"took" : 4,
"timed_out" : false,
"total" : 0,
"deleted" : 0,
"batches" : 0,
"version_conflicts" : 0,
"noops" : 0,
"retries" : {
"bulk" : 0,
"search" : 0
},
"throttled_millis" : 0,
"requests_per_second" : -1.0,
"throttled_until_millis" : 0,
"failures" :
}