MAPREDUCE-5761. Added a simple log message to denote when encrypted shuffle is on in the shuffle-handler. Contributed by Jian He.
svn merge --ignore-ancestry -c 1571514 ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1571515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5f3f90a640
commit
a6529b363c
|
@ -34,6 +34,9 @@ Release 2.4.0 - UNRELEASED
|
||||||
|
|
||||||
MAPREDUCE-5699. Allow setting tags on MR jobs (kasha)
|
MAPREDUCE-5699. Allow setting tags on MR jobs (kasha)
|
||||||
|
|
||||||
|
MAPREDUCE-5761. Added a simple log message to denote when encrypted shuffle
|
||||||
|
is on in the shuffle-handler. (Jian He via vinodkv)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -367,6 +367,7 @@ public class ShuffleHandler extends AuxiliaryService {
|
||||||
SHUFFLE = getShuffle(conf);
|
SHUFFLE = getShuffle(conf);
|
||||||
if (conf.getBoolean(MRConfig.SHUFFLE_SSL_ENABLED_KEY,
|
if (conf.getBoolean(MRConfig.SHUFFLE_SSL_ENABLED_KEY,
|
||||||
MRConfig.SHUFFLE_SSL_ENABLED_DEFAULT)) {
|
MRConfig.SHUFFLE_SSL_ENABLED_DEFAULT)) {
|
||||||
|
LOG.info("Encrypted shuffle is enabled.");
|
||||||
sslFactory = new SSLFactory(SSLFactory.Mode.SERVER, conf);
|
sslFactory = new SSLFactory(SSLFactory.Mode.SERVER, conf);
|
||||||
sslFactory.init();
|
sslFactory.init();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue