Is there a Node.JS client equivalent to the Hazelcast Discovery Plugin for AWS? We are running a mix of Java and Node.js backend services on AWS, and need to be able to connect them all to the same HazelCast cluster running on AWS ECS.
Looking for advice on what we should put in hazelcast-client.json to make client discovery work on AWS when the cluster is scaled up and down.
Excerpt of our member configuration:
<network>
<interfaces enabled="true">
<interface>10.109.*.*</interface>
</interfaces>
<join>
<multicast enabled="false"/>
<aws enabled="true">
<region>us-east-2</region>
<tag-key>abcd:hazelcast-cluster</tag-key>
<tag-value>abcd-hz-node</tag-value>
</aws>
</join>
</network>
Michael Herzberg