I created a pivot continuous transformation to automatically count the data in each location. Each document has an 'updated_at' field which is a timestamp in epoch second format when each document was last modified.
After I updated many documents, I found that the created transformation had not updated its checkpoint, and documents in the destination index remained the same.
I also found that there are some 'operations_behind' when I get statistics of the transformation.
"checkpointing": {
"last": {
"checkpoint": 1,
"timestamp_millis": 1702437669083,
"time_upper_bound_millis": 1702437609083
},
"operations_behind": 25868,
"changes_last_detected_at": 1702437669081,
"last_search_time": 1702438506413
}
I'm not sure how continuous transformation updates itself. Maybe I missing something.
Hope anyone help