Re: Ignite 2.3.0 hangs in startup

2017-11-16 Thread ezhuravlev
Looks like you witnessed this issue: https://issues.apache.org/jira/browse/IGNITE-6555 Which is already fixed and will be available in 2.4 release Evgenii -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite 2.3.0 hangs in startup

2017-11-15 Thread Sumanta Ghosh
Hi, Got the reason now. Ignite 2.3.0 hangs because of a regression bug wherein the cachestores use @SpringResource annotation and ignite starts up with SpringCacheManager class. Thanks for the help extended. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite 2.3.0 hangs in startup

2017-11-13 Thread Sumanta Ghosh
Hi, After enabling debug mode on ignite logging, the log shows ignite continuously getting timeout in the following: - 2017-11-13 21:33:00.770 DEBUG 11232 --- [r-#23%bfs-grid%] o.a.i.i.p.timeout.GridTimeoutProcessor : Timeout has occurred [obj=CancelableTask

Re: Ignite 2.3.0 hangs in startup

2017-11-10 Thread Sumanta Ghosh
Hi Evgenii, I checked further, I am using logback with Slf4j (default setting in spring boot). Can this be an issue? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite 2.3.0 hangs in startup

2017-11-10 Thread Sumanta Ghosh
Hi Evgenii, I have now the following set-up IgniteConfiguration igniteConfig = new IgniteConfiguration(); igniteConfig.setGridLogger(new Slf4jLogger(log)); where log is my Slf4j logger. However, the server still hangs at startup giving the same message. -- Sent from:

Re: Ignite 2.3.0 hangs in startup

2017-11-10 Thread ezhuravlev
For using slf4j, you need to have a configure file, as it showed in the message, default it's config/java.util.logging.properties, so, you can add this file to this path or try to configure slf4j: https://www.slf4j.org/docs.html Ignite slf4 logger constructor also have another constructor - new

Re: Ignite 2.3.0 hangs in startup

2017-11-10 Thread Sumanta Ghosh
Hi All, Evgenii, Can you please help me here? We are kind of clue-less on this one and as a result not able to upgrade to 2.3.0. Can you please let me know how to enable verbose logging in embedded mode (i.e. running from within Spring Boot application)? -- Sent from:

Re: Ignite 2.3.0 hangs in startup

2017-11-06 Thread Sumanta Ghosh
Hi Evgenii, I have ignite-slf4j module included in my pom. Also has the following settings done in java IgniteConfiguration igniteConfig = new IgniteConfiguration(); igniteConfig.setGridLogger(new Slf4jLogger()); Do I have to do anything else? From documentation,

Re: Ignite 2.3.0 hangs in startup

2017-11-05 Thread ezhuravlev
Hi, As I see in this error message: Failed to resolve default logging config file: config/java.util.logging.properties Console logging handler is not configured. You don't have java.util.logging.properties config file for SLF4j. I've checked 2.3.0 binaries and this file exists in folder