<hazelcast-client xmlns="http://www.hazelcast.com/schema/client-config"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://www.hazelcast.com/schema/client-config
                                      http://www.hazelcast.com/schema/client-config/hazelcast-client-config-5.0.xsd">
									  
	<instance-name>rb_global</instance-name>
    <cluster-name>rb_global</cluster-name>								  
    
	<network>
        <cluster-members>
            <address>127.0.0.1:5701</address>
            <!-- Add more nodes if you have a cluster -->
        </cluster-members>
		<smart-routing>true</smart-routing>
        <redo-operation>true</redo-operation>
        <connection-timeout>30000</connection-timeout>
    </network>
	
    
    <connection-strategy async-start="false" reconnect-mode="ON">
        <connection-retry>
            <initial-backoff-millis>1000</initial-backoff-millis>
            <max-backoff-millis>60000</max-backoff-millis>
            <multiplier>2</multiplier>
            <cluster-connect-timeout-millis>-1</cluster-connect-timeout-millis>
            <jitter>0.2</jitter>
        </connection-retry>
    </connection-strategy>

    <properties>
        <property name="hazelcast.logging.type">log4j2</property>
        <property name="hazelcast.jmx">true</property>
        <property name="hazelcast.client.heartbeat.interval">5000</property>
        <property name="hazelcast.client.heartbeat.timeout">60000</property>
    </properties>    	
    <!-- ...other config... -->
</hazelcast-client>
