Repository: ambari Updated Branches: refs/heads/trunk ecc44d2cd -> ee59abc9d
AMBARI-12011. Use 128-bit AES for encrypted data transfers (3DES yields poor throughput) (srimanth) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/ee59abc9 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/ee59abc9 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/ee59abc9 Branch: refs/heads/trunk Commit: ee59abc9d6fd66d71e25af85d7deccf52161cee4 Parents: ecc44d2 Author: Srimanth Gunturi <[email protected]> Authored: Thu Jun 18 16:01:59 2015 -0700 Committer: Srimanth Gunturi <[email protected]> Committed: Thu Jun 18 16:39:55 2015 -0700 ---------------------------------------------------------------------- .../HDP/2.3/services/HDFS/configuration/hdfs-site.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/ee59abc9/ambari-server/src/main/resources/stacks/HDP/2.3/services/HDFS/configuration/hdfs-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.3/services/HDFS/configuration/hdfs-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.3/services/HDFS/configuration/hdfs-site.xml index 5f2db0c..b14d73a 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.3/services/HDFS/configuration/hdfs-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.3/services/HDFS/configuration/hdfs-site.xml @@ -38,4 +38,15 @@ <value>* rw</value> </property> + <property> + <name>dfs.encrypt.data.transfer.cipher.suites</name> + <value>AES/CTR/NoPadding</value> + <description> + This value may be either undefined or AES/CTR/NoPadding. If defined, then + dfs.encrypt.data.transfer uses the specified cipher suite for data encryption. + If not defined, then only the algorithm specified in dfs.encrypt.data.transfer.algorithm + is used. By default, the property is not defined. + </description> + </property> + </configuration>
