The ignite configuration in my app.config (and web.config) is like below:
<discoverySpi type="TcpDiscoverySpi">
<localPort>48500</localPort>
<ipFinder type="TcpDiscoveryStaticIpFinder">
<endpoints>
<string>192.168.1.100:48500</string>
</endpoints>
</ipFinder>
</discoverySpi>
<communicationSpi type="TcpCommunicationSpi">
<localPort>48100</localPort>
</communicationSpi>
With that configuration, a client on the same network (on a different
computer) connects around 10-12 seconds.
If I use an IP block like 192.168.1.100:48500..48520 it takes even more
time.
Are there any way to make this faster? What is the best practice?
Thanks
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/A-question-about-cluster-configuration-Are-there-any-way-to-make-client-connection-faster-tp11655.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.