|
|
|
|
|
by cplli
1420 days ago
|
|
IANAL, but shouldn't a data deletion request also apply to the data inside backups, even when no recovery is planned? Edit: I am also skeptical about the logs part, I don't think logs can be a magical excuse to log everything that comes in, and should still only log "legitimate" use-cases. |
|
If logs were exempt, it'd be really easy to just ignore GDPR by sticking everything in logs.
There is no magical GDPR fairy that prevents you from needing to comply with deletion requests because you've made your data formats awkward and hard to track/trace.
There are nice articles about how to anonymize log files so they don't need to contain identifiable information. For example, what is generally okay is storing part of an IP. If I just store the odd digits of the IP:
1) I'm probably okay for not being able to identify individuals.
2) I can do most analytics without issues. Unless I have bazillions of visitors, the identifiers are unique.
For nitpickers: Odd digits is a dumb hash for illustrative purposes. In practice, I'd run the IP through SHA, and store just the first few bytes -- enough that visitors are unique most of the time in my log files, but not enough to be able to meaningfully map back to a person.