Sunit Parekh
Sunit Parekh
example subdocument anonymization: in case subdocument is array use: https://github.com/sunitparekh/data-anonymization/blob/master/examples/mongodb_whitelist_dsl.rb#L34 in case of subdocument as hash use: https://github.com/sunitparekh/data-anonymization/blob/master/examples/mongodb_whitelist_dsl.rb#L38 sample JSON document for above is: https://github.com/sunitparekh/data-anonymization/blob/master/sample-data/mongo/plans.json let me know this solves...
It required MongoDB running for functional end-2-end tests to pass.
data-anonymization script should establish connection by itself. Since it is using the blacklist strategy it should update the data in database. let me try your example and test it myself....
One quick observation from the log message is UPDATE statement shows `WHERE user.id IS NULL`, that seems little odd to me. Does the primary key field with name `ID` exists...
Good to hear that you are able to proceed. I will try and look into the case sensitive problem and add it to a quick FAQ or Troubleshooting section on...
nope. You are not required to add such connection statement before. Let me try and look into that. let me try and test it with mysql database. On Wed, Mar...
No luck, I am not sure why adding establish connection call required. Actually if you look at the code of 'data-anonmyzation' line Base class # 73 https://github.com/sunitparekh/data-anonymization/blob/master/lib/strategy/base.rb#L73 it has the...
@rpiotrow I have published v0.7.0 and fixed issue with cases in fieldnames. In code for some reason I was doing `downcase` which might be causing issues for you. Please try...
👍 good idea and let me see when I can do it :-)
I am working on porting this tool to Java/Kotlin for better performance. If you want to give it a try for early version you can find it here... https://github.com/dataanon/data-anon Sample...