Viewing profile — daamien
daamien
HN member- Joined
- Mon, Sep 26, 2011, 4:16 PM UTC
- HN karma
- 133
- Public activity
- 33 items
- HN profile
- View on Hacker News ↗
About daamien
No profile information was provided.
Recent public activity
- story
-
comment
Comment #43015329
OP is one of 7 PostgreSQL core team members. That's kind of his job to massively overthink this :)
-
comment
Comment #42744770
Hi ! I'm the main developer of this extension. Happy to answer any question you have about this project and anonymization in general!
-
comment
Comment #42744762
Pseudonymizing functions are just one way to mask the data. There are many other masking functions that will actually anonymize the data. And the extension does not force you to re…
-
comment
Comment #42744745
PostgreSQL Anonymizer developer here : this was possible with version 0.8 which is now completely unmaintained. This extension is currently not available on RDS but it is available…
-
comment
Comment #42744737
Both approach are possible * Static Masking will destroy the authentic data once for all * Dynamic Masking will only alter the data the "masked users". Regular users will continue …
-
comment
Comment #42744726
This is called "Privacy By Default" https://postgresql-anonymizer.readthedocs.io/en/stable/priva...
-
comment
Comment #42744713
Of course there's no perfect solution for anonymizing a dataset... The extension offers a large panel of masking functions : some are pseudonymizing functions but others are more d…
-
comment
Comment #42744675
Version 2.0 was released a few days ago. It's a complete rewrite in Rust. Performance should be better than with v1.x
-
comment
Comment #42744669
This called "Masking Data Wrappers" https://postgresql-anonymizer.readthedocs.io/en/stable/maski...
-
comment
Comment #42744657
PostgreSQL Anonymizer developer here : this was possible with version 0.8 which is now completely unmaintained. This extension is currently not available on RDS but it is available…
-
comment
Comment #42744586
PostgreSQL Anonymizer developer here : the problem you are describing here only affects version 1.x Version 2.0 was released a few days ago with a branch new masking system that do…
-
comment
Comment #38248939
Actually the GDPR "just" requires to protect the data against "reasonably likely" attacks. « To determine whether a natural person is identifiable, account should be taken of all t…
- story
- story
-
comment
Comment #21376895
See PEV2 : https://github.com/dalibo/pev2
-
comment
Comment #18855837
This is still an issue : https://postgresql.verite.pro/blog/2018/08/27/glibc-upgrade....
-
comment
Comment #16781662
... and with dozens of other data sources: https://wiki.postgresql.org/wiki/Foreign_data_wrappers
-
comment
Comment #16781623
PostgreSQL does this out of the box with : CREATE EXTENSION file_fdw; CREATE SERVER import FOREIGN DATA WRAPPER file_fdw; CREATE FOREIGN TABLE foo ( col1 text, col2 text, ... ) SER…
- story
- story
-
comment
Comment #11317907
direct link to the PDF : http://www.postgresql.org/message-id/attachment/43080/Postgr...
- story
- story
-
comment
Comment #9774810
Temporary index and Hypothetical index are two different things. Temporary index is a real index that's usually dynamically created by the optimizer to speed up a query. But it's k…