The only possibly different thing we are doing is using a VPC endpoint to
allow the nodes to access S3 directly, without having to supply credentials.
<bean id="grid.cfg"
class="org.apache.ignite.configuration.IgniteConfiguration"
parent="base-ignite.cfg">
<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="xxxxxxxxx"/>
<property name="awsCredentials" ref="aws.creds">
</property>
</bean>
</property>
</bean>
</property>
</bean>
<bean id="aws.creds" class="com.amazonaws.auth.AnonymousAWSCredentials">
</bean>
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/