Now, I am running a job every day that fetches the data from delta lake of last 7 days, as the data contains the timestamp column. I am processing this data and writing to other database. As there is possibility of late data, I run this job every day and check for new data in last 7 day. But when I do so, I also get the old data with the new data. Hence the processing now I do, is for (rewriting(old data) + late data + new data). How can I stop processing the old data.Any Ideas?