Procházet zdrojové kódy

AMBARI-12011. Use 128-bit AES for encrypted data transfers (3DES yields poor throughput) (srimanth)

Srimanth Gunturi před 10 roky
rodič
revize
ee59abc9d6

+ 11 - 0
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>