- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ02-14-2023 08:03 AM
Time travel and version control- can create custom version control for each day data load when multiple updates happening in a day.
For example , letโs assume we are doing multiple operation on table in a day every minute and want to keep time travel history for each day of latest version of a day for one week .
- Labels:
-
Time travel
-
Versioncontrol
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ02-14-2023 09:52 AM
If I understood correctly, you want to keep only one version per day regardless of the number of transactions done on that day. The problem in achieving this is that if you delete any of the versions in a delta table, you will lose the ability to time travel to any version before that.
The only way I think this is achievable is by keeping some sort of record(in a separate table perhaps) of the latest version for each day and use information from there to do a time travel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ02-14-2023 09:52 AM
If I understood correctly, you want to keep only one version per day regardless of the number of transactions done on that day. The problem in achieving this is that if you delete any of the versions in a delta table, you will lose the ability to time travel to any version before that.
The only way I think this is achievable is by keeping some sort of record(in a separate table perhaps) of the latest version for each day and use information from there to do a time travel

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ02-16-2023 09:48 PM
Hi @vinay kumarโ
Hope all is well! Just wanted to check in if you were able to resolve your issue and would you be happy to share the solution or mark an answer as best? Else please let us know if you need more help.
We'd love to hear from you.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ02-18-2023 11:38 AM
Yes , Issue got resolved . Thanks

