HDFS-8004. Use KeyProviderCryptoExtension#warmUpEncryptedKeys when creating an encryption zone. (awang via asuresh)

(cherry picked from commit e97f8e44af)
This commit is contained in:
Arun Suresh 2015-03-27 19:23:45 -07:00
parent eb7068c2c9
commit dadda2edca
2 changed files with 4 additions and 1 deletions

View File

@ -29,6 +29,9 @@ Release 2.8.0 - UNRELEASED
HDFS-7990. IBR delete ack should not be delayed. (daryn via kihwal)
HDFS-8004. Use KeyProviderCryptoExtension#warmUpEncryptedKeys when creating
an encryption zone. (awang via asuresh)
OPTIMIZATIONS
BUG FIXES

View File

@ -7955,7 +7955,7 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean,
throw new IOException("Key " + keyName + " doesn't exist.");
}
// If the provider supports pool for EDEKs, this will fill in the pool
generateEncryptedDataEncryptionKey(keyName);
provider.warmUpEncryptedKeys(keyName);
createEncryptionZoneInt(src, metadata.getCipher(),
keyName, logRetryCache);
} catch (AccessControlException e) {