I want to keep the OfflineStore, but I want to change the is_deleted
column and hide than at OnlineStore. I know that in situations where I want to delete a record, I could use delete_record, but my question is: How to do it to many records in a scalable way?
Asked
Active
Viewed 146 times
0

Lucas Brito
- 143
- 1
- 3
- 10
-
1Please clarify the requirements, stating the desired results in both the online and offline store. – Marc Karp Jan 25 '23 at 21:19
-
@MarcKarp I wanted the Offline Store to keep the record, removing only for Online Store. So I could get the advantages of the time travel feature. – Lucas Brito Jan 27 '23 at 17:30
-
1The online store will only contain the latest feature values. Batch deletion of historical features can be done directly on the offline store. Either by updating column is_deleted value or deleting the features entirely from S3. – Marc Karp Feb 19 '23 at 06:34