Member since
10-04-2020
4
Posts
0
Kudos Received
0
Solutions
01-28-2021
01:27 AM
Thank you for the help Tushar-san , understood, we can update log4j property
... View more
10-07-2020
09:34 PM
1 Kudo
@saurabh707 You are expecting the query results to be redacted which will not happen in CDH. Let me explain you with a simple example. 0: jdbc:hive2://host-10-17-102-168.coe.cloude> select * from redaction_test where email='tushark@gmail.com'; INFO : Completed compiling command(queryId=hive_20201007212727_0b73be29-c01b-4d47-a9f3-fef9cf470e53); Time taken: 0.214 seconds INFO : Executing command(queryId=hive_20201007212727_0b73be29-c01b-4d47-a9f3-fef9cf470e53): select * from redaction_test where email='email@redacted.host' ---->Look here, the data is redacted +--------------------+-----------------------+--+ | redaction_test.id | redaction_test.email | +--------------------+-----------------------+--+ | 1 | tushark@gmail.com |---> The results will not be redacted +--------------------+-----------------------+-- -If you are expecting the results to be redacted, this will not happen in CDH but if you look at the logs, the sensitive data is redacted as pointed above. You can read the below the blog to check the same. https://blog.cloudera.com/new-in-cdh-5-4-sensitive-data-redaction/ However, if you want the results to be redacted, we have CDP coming into picture where you can redact the query results with the help of Ranger. Checkout more on the same: https://docs.cloudera.com/cdp-private-cloud-base/7.1.3/security-how-to-guides/topics/cm-security-redaction.html
... View more