Hi Sri,

If your nodes created in EC2, it is very simple to start the ignite cluster. 
You have two option to configure the IP for all nodes auto discover the IP.

  1.  Statically giving the public IP list in the IP configuration section in 
ignite config file.
  2.  Use s3 bucket to configure the IP, and it will automatically discover the 
related nodes from s3 bucket.

I am using the 2nd method, and below is the configuration I have given for my 
cluster

<!-- Discover IP using Amazon s3. -->
        <property name="discoverySpi">
        <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
        <property name="ipFinder">
            <bean 
class="org.apache.ignite.spi.discovery.tcp.ipfinder.s3.TcpDiscoveryS3IpFinder">
                <property name="bucketName" value="yours3bucketname"/>
                <property name="awsCredentials">
                    <bean class="com.amazonaws.auth.BasicAWSCredentials">

                        <constructor-arg value="YOUR_ACCESS_KEY_ID"/>

                        <constructor-arg value="YOUR_SECRET_ACCESS_KEY"/>
                   </bean>
                </property>
            </bean>
        </property>
        </bean>
        </property>


Regards,
Favas

From: sri hari kali charan Tummala <[email protected]>
Sent: Friday, September 27, 2019 10:02 PM
To: [email protected]
Subject: Does any one have working Ignite cluster on AWS

Hi All,

can someone help me run a working ignite cuter on AWS , did anyone able to 
figure out steps required for setting up working ignite cluster on AWS.

Ignite documentation doesnt make sense it's just launching a docker instance on 
Ec2.

--
Thanks & Regards
Sri Tummala

Reply via email to