Thanks Val
one more question on this
if I want to minimize number of potentially-used ports (because of our
security guys)
is it ok to have configuration like below one?
here we have 3 server nodes each running on separate server, they always
use the same 47500 port - no ranges
As I understood if we'll later start one more node at host4:47500 it will
join cluster if at least one from default-configured nodes is up, right?
do you see any drawback in such configuration?
<bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="localPort" value="47500"/>
<property name="localPortRange" value="1"/>
<property name="ipFinder">
<bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
<property name="addresses">
<list>
<value>host1:47500</value>
<value>host2:47500</value>
<value>host3:47500</value>
</list>
</property>
</bean>
</property>
</bean>
On Sat, Apr 21, 2018 at 9:49 PM, vkulichenko <[email protected]>
wrote:
> The only place where Ignite uses UDP is multicast IP finder [1]. Default
> number is 47400.
>
> [1]
> https://apacheignite.readme.io/docs/cluster-config#
> multicast-based-discovery
>
> -Val
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>