I have a fairly basic question on IGFS. I am following the examples of igfs
on github.
I have a an igfs node on my localhost. I wish to create another igfs node on
server B
and have my localhost and server B share the igfs instance.
I assume the way to accomplish is this is using
org.apache.ignite.igfs.IgfsIpcEndpointConfiguration
as follows?
[CODE]
<property name="ipcEndpointConfiguration">
<bean
class="org.apache.ignite.igfs.IgfsIpcEndpointConfiguration">
<property name="type" value="TCP" />
</bean>
</property>
[/CODE]
If so, why do I not see a localPort setting where igfs listens to peers?
What is the default port?
Also, could you please explain the purpose of TcpDiscoveryVmIpFinder vs.
TcpDiscoveryMulticastIpFinder?
(example below).
[CODE]
<property name="discoverySpi">
<bean
class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="ipFinder">
<bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder">
<property name="addresses">
<list>
<value>127.0.0.1:47500..47509</value>
</list>
</property>
</bean>
</property>
</bean>
</property>
[/CODE]
For multicast discovery, I assume I will have to configure my firewall to
allow it.
thankx,
/Kobe
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Connecting-two-nodes-in-IGFS-tp2196.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.