Created 07-25-2017 12:47 PM
Hi All,
I need to store username and password in Phoenix HBase and this table needs to be encrypted.
I want to ask, is there any example or any materials I can read?
Bin Ye
Created 07-25-2017 03:26 PM
The best way is to run HBase in an HDFS encryption zone. This ensures that the HBase WALs and store files are all encrypted at rest. Make sure that you are also enabling wire-encryption (auth-conf quality of protection in HBase's SASL configuration) if data-in-motion also needs to be encrypted.
https://hbase.apache.org/book.html#hbase.encryption.server
https://hortonworks.com/blog/new-in-hdp-2-3-enterprise-grade-hdfs-data-at-rest-encryption/
Created 07-25-2017 03:26 PM
The best way is to run HBase in an HDFS encryption zone. This ensures that the HBase WALs and store files are all encrypted at rest. Make sure that you are also enabling wire-encryption (auth-conf quality of protection in HBase's SASL configuration) if data-in-motion also needs to be encrypted.
https://hbase.apache.org/book.html#hbase.encryption.server
https://hortonworks.com/blog/new-in-hdp-2-3-enterprise-grade-hdfs-data-at-rest-encryption/
Created 07-27-2017 11:54 AM
Hi Josh,
Thanks for your information.
Bin Ye