Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to store password in Apache phoenix HBase table.

avatar
New Member

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

1 ACCEPTED SOLUTION

avatar
Super Guru

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/

View solution in original post

2 REPLIES 2

avatar
Super Guru

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/

avatar
New Member

Hi Josh,

Thanks for your information.

Bin Ye