HDFS-7931. DistributedFileSystem should not look for keyProvider in cache if Encryption is disabled (asuresh)
(cherry picked from commit 7660da95cb
)
This commit is contained in:
parent
ad99d268e5
commit
3d17c50176
|
@ -161,6 +161,9 @@ Release 2.7.1 - UNRELEASED
|
|||
|
||||
HDFS-8081. Split getAdditionalBlock() into two methods. (shv)
|
||||
|
||||
HDFS-7931. DistributedFileSystem should not look for keyProvider in
|
||||
cache if Encryption is disabled (asuresh)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -3537,6 +3537,10 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|||
}
|
||||
}
|
||||
|
||||
public boolean isHDFSEncryptionEnabled() {
|
||||
return conf.get(
|
||||
DFSConfigKeys.DFS_ENCRYPTION_KEY_PROVIDER_URI, null) != null;
|
||||
}
|
||||
/**
|
||||
* Returns the SaslDataTransferClient configured for this DFSClient.
|
||||
*
|
||||
|
|
|
@ -2227,7 +2227,7 @@ public class DistributedFileSystem extends FileSystem {
|
|||
public Token<?>[] addDelegationTokens(
|
||||
final String renewer, Credentials credentials) throws IOException {
|
||||
Token<?>[] tokens = super.addDelegationTokens(renewer, credentials);
|
||||
if (dfs.getKeyProvider() != null) {
|
||||
if (dfs.isHDFSEncryptionEnabled()) {
|
||||
KeyProviderDelegationTokenExtension keyProviderDelegationTokenExtension =
|
||||
KeyProviderDelegationTokenExtension.
|
||||
createKeyProviderDelegationTokenExtension(dfs.getKeyProvider());
|
||||
|
|
Loading…
Reference in New Issue