I went through my rollup job JSON file and I think current_position in below config is the way how a rollup job memorizes the last document it processed.
"status": {
"job_state": "started",
"current_position": {
"@timestamp.date_histogram": 1571728849000,
"status.terms": "complete"
}
My question is what if I insert data which have @timestamp value less than @timestamp.date_histogram (last processed timestamp value)
Will they also be processed?
Or @timestamp values which are greater than last processed timestamp value will only be processed?
