You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by nt...@apache.org on 2015/07/23 15:09:08 UTC

incubator-ignite git commit: Added benchmark for SSL.

Repository: incubator-ignite
Updated Branches:
  refs/heads/1.3.3-sslbench [created] b7912fd15


Added benchmark for SSL.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/b7912fd1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/b7912fd1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/b7912fd1

Branch: refs/heads/1.3.3-sslbench
Commit: b7912fd15a111257c79ccdd75744adc146e446ca
Parents: 65feef6
Author: nikolay_tikhonov <nt...@gridgain.com>
Authored: Thu Jul 23 16:09:16 2015 +0300
Committer: nikolay_tikhonov <nt...@gridgain.com>
Committed: Thu Jul 23 16:09:16 2015 +0300

----------------------------------------------------------------------
 modules/yardstick/config/ignite-base-config.xml |  10 ++++++++++
 modules/yardstick/config/server.jks             | Bin 0 -> 3230 bytes
 2 files changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/b7912fd1/modules/yardstick/config/ignite-base-config.xml
----------------------------------------------------------------------
diff --git a/modules/yardstick/config/ignite-base-config.xml b/modules/yardstick/config/ignite-base-config.xml
index b2c976a..3b74d16 100644
--- a/modules/yardstick/config/ignite-base-config.xml
+++ b/modules/yardstick/config/ignite-base-config.xml
@@ -29,6 +29,16 @@
 
         <property name="metricsLogFrequency" value="5000"/>
 
+        <property name="sslContextFactory">
+            <bean class="org.apache.ignite.ssl.SslContextFactory">
+                <property name="keyStoreFilePath" value="config/server.jks"/>
+                <property name="keyStorePassword" value="123456"/>
+                <property name="trustManagers">
+                    <bean class="org.apache.ignite.ssl.SslContextFactory" factory-method="getDisabledTrustManager"/>
+                </property>
+            </bean>
+        </property>
+
         <property name="cacheConfiguration">
             <list>
                 <bean class="org.apache.ignite.configuration.CacheConfiguration">

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/b7912fd1/modules/yardstick/config/server.jks
----------------------------------------------------------------------
diff --git a/modules/yardstick/config/server.jks b/modules/yardstick/config/server.jks
new file mode 100644
index 0000000..006ecec
Binary files /dev/null and b/modules/yardstick/config/server.jks differ