Hi,
   I just started looking to adapt Apache Ignite into our project as an 
in-memory distributed cache and potentially as distributed computing grid.
   An Ignite client application, ClientPutGetExample, encountered "Ignite 
cluster is unavailable" error intermittently.    Ignite 2.7.0 was being
   used in the dev environment.    There was  a cluster of 2 Ignite servers 
which was running with the client application in the same host.
   I noticed that the error was encountered after one of the server was stopped.

   How would I resolve the issue?
   Thank you for your help in advance.

Regards,
Lawrence





_________________________________________________________________________________________________________________________________________________________________________________________________________________________________

This message is for information purposes only, it is not a recommendation, 
advice, offer or solicitation to buy or sell a product or service nor an 
official confirmation of any transaction. It is directed at persons who are 
professionals and is not intended for retail customer use. Intended for 
recipient only. This message is subject to the terms at: 
www.barclays.com/emaildisclaimer.

For important disclosures, please see: 
www.barclays.com/salesandtradingdisclaimer regarding market commentary from 
Barclays Sales and/or Trading, who are active market participants; and in 
respect of Barclays Research, including disclosures relating to specific 
issuers, please see http://publicresearch.barclays.com.

______________________________________________________________________________________________________________________________________________________________________
If you are incorporated or operating in Australia, please see 
https://www.home.barclays/disclosures/importantapacdisclosures.html for 
important disclosure.
______________________________________________________________________________________________________________________________________________________________________
______________________________________________________________________________________________________________________________________________________________________
How we use personal information  see our privacy notice 
https://www.investmentbank.barclays.com/disclosures/personalinformationuse.html
_________________________________________________________________________________________________________________________________________________________________________________________________________________________________
<?xml version="1.0" encoding="UTF-8"?>

<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->

<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd";>
    <!--
        Alter configuration below as needed.
    -->
    <bean id="grid.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">

       <property name="cacheConfiguration">
            <bean class="org.apache.ignite.configuration.CacheConfiguration">
               <!-- Set a cache name. -->
               <property name="name" value="*"/>
	       <!-- Set cache mode. -->
	       <property name="cacheMode" value="PARTITIONED"/>
	       <!-- Number of backup nodes. -->
	       <property name="backups" value="1"/>
            </bean>
       </property>

       <property name="communicationSpi">
              <bean class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi">
                   <property name="messageQueueLimit" value="1024"/>
	      </bean>
       </property>
    </bean>
</beans>

Reply via email to