Re: Ignite Visor cache command freezes, when client node connects.

2019-01-15 Thread Ilya Kasnacheev
Hello!

Can you collect thread dumps during freeze?

Regards,
-- 
Ilya Kasnacheev


пт, 11 янв. 2019 г. в 01:23, javadevmtl :

> Hi, using 2.7.3
>
> I start my client as...
>
> TcpDiscoverySpi spi = new TcpDiscoverySpi();
> TcpDiscoveryVmIpFinder ipFinder = new TcpDiscoveryVmIpFinder();
> ipFinder.setAddresses(addresses.getList());
> spi.setIpFinder(ipFinder);
>
> igniteConfig.setDiscoverySpi(spi);
>
> igniteConfig.setClientMode(true);
>
> I then also create a cache dynamically as...
>
> CacheConfiguration cacheCfg = new CacheConfiguration("DJTAZZ");
>
> cacheCfg.setCacheMode(CacheMode.REPLICATED);
> this.cache =
> igniteClient.getIgniteInstance().getOrCreateCache(cacheCfg);
>
> In ignitegridvisor.sh when I run the "cache" command it seems to freeze
> until I disconnect my application.
>
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>


Ignite Visor cache command freezes, when client node connects.

2019-01-10 Thread javadevmtl
Hi, using 2.7.3

I start my client as...

TcpDiscoverySpi spi = new TcpDiscoverySpi();
TcpDiscoveryVmIpFinder ipFinder = new TcpDiscoveryVmIpFinder();
ipFinder.setAddresses(addresses.getList());
spi.setIpFinder(ipFinder);

igniteConfig.setDiscoverySpi(spi);

igniteConfig.setClientMode(true);

I then also create a cache dynamically as...

CacheConfiguration cacheCfg = new CacheConfiguration("DJTAZZ");

cacheCfg.setCacheMode(CacheMode.REPLICATED);
this.cache =
igniteClient.getIgniteInstance().getOrCreateCache(cacheCfg);

In ignitegridvisor.sh when I run the "cache" command it seems to freeze
until I disconnect my application.




--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/