Re: Ignite configuration for starting in client mode

2018-04-24 Thread Вячеслав Коптилин
Hello Prasad, I think it is not necessary to setup cache configurations and/or data storage config on the client node until you don't use local caches. The most important things that you have to configure are IgniteConfiguration#clientMode(true) [1] and Discovery SPI [2]. [1] https://apacheignite

Re: Ignite configuration for starting in client mode

2018-04-24 Thread akurbanov
Hi, You can omit cache configuration, in this case Ignite will pick default configuration for caches you will create using getOrCreateCache("CACHE_NAME"). If you want to enable Ignite Persistence, you have to set DataStorageConfiguration at least to enable it with default configuration: https://

Ignite configuration for starting in client mode

2018-04-24 Thread Prasad Bhalerao
Hi, I want to start ignite in tomcat container but in client mode. Is it necessary to set cache configuration CacheConfiguration and DataStorageConfiguration in IgniteConfiguration while starting the in client mode? Thanks, Prasad