You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current implementation of GDPR Forget, a second call to DeleteShard is necessary at the end of ExecForget(). This is because although the initial call to DeleteShard removes all data in the user's shard, subsequent anonymization updates may result in data again being added to the user's shard.
We suspect this is because dataflow updates happen after making changes to the database. So, when we look at the indices, we look at values which are not updated. This may be resolved by implementing journaling for dataflow updates.
The text was updated successfully, but these errors were encountered:
In the current implementation of GDPR Forget, a second call to
DeleteShard
is necessary at the end ofExecForget()
. This is because although the initial call toDeleteShard
removes all data in the user's shard, subsequent anonymization updates may result in data again being added to the user's shard.We suspect this is because dataflow updates happen after making changes to the database. So, when we look at the indices, we look at values which are not updated. This may be resolved by implementing journaling for dataflow updates.
The text was updated successfully, but these errors were encountered: