- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
how to remove a hdfs path from encryption zone
- Labels:
-
Apache Hadoop
Created ‎08-08-2016 06:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I created a key and then using that key created an encryption zone on a path
hdfs dfs -mkdir /enczone hadoop crypto -createZone -keyName testkey -path /enczone
now i have deleted that key testkey.
but if I try to access the path /enczone.
I get Null pointer exception saying no key found testkey, looks like since path is encrypted so we get this error.
any workaround on this without creating the key again?
Created ‎08-08-2016 06:31 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You should not have deleted the encryption key. You cannot just disable an encryption zone. If you can still recover the key, do that, read the data and copy it in an unencrypted zone. Then simply delete the encrypted directory and then you can delete the key. Otherwise, the data is likely lost.
Created ‎08-08-2016 06:31 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You should not have deleted the encryption key. You cannot just disable an encryption zone. If you can still recover the key, do that, read the data and copy it in an unencrypted zone. Then simply delete the encrypted directory and then you can delete the key. Otherwise, the data is likely lost.
