Re: Issue with adding nested index dynamically

2019-10-07 Thread Hemambara
I have made changes and created pull request. Can you please check and let me know if there are any issues with the commit. Otherwise can you please let me know when it can it be available in maven repo so that we can start pulling it in our organization https://github.com/apache/ignite/pull/6947

Re: JUL logging problem

2019-10-07 Thread Mikael
Hi again! It is a bit weird, I use the standard Ignite property file and it say: handlers=java.util.logging.ConsoleHandler, org.apache.ignite.logger.java.JavaLoggerFileHandler I cannot see that there should be any reason for there to not be two handlers (it does use the property file, I trie

How to query existing cache that was configured via XML

2019-10-07 Thread devinbost
My team created an Ignite cache from the XML configuration, and we're trying to get some visibility into its data. It appears that there are no tables associated with the cache, so we're not sure if it's possible for us to query it without needing to recreate the table in a way that would cause dat

Re: GridCachePartitionExchangeManager Null pointer exception

2019-10-07 Thread Pavel Kovalenko
Mahesh, Assertion error occurs if you run node with enabled assertions (jvm flag -ea). If assertions are disabled it leads to NullPointer exception as you have in logs. сб, 5 окт. 2019 г. в 16:47, Mahesh Renduchintala < mahesh.renduchint...@aline-consulting.com>: > Pavel, I don't have the logs f

Re: Does Ignite support Distributed and Remote Second Level Cache for Hibernate?

2019-10-07 Thread Alexander Korenshteyn
Use this documentation for H2 cache: https://apacheignite-mix.readme.io/docs/hibernate-l2-cache On Mon, Oct 7, 2019 at 11:34 AM Alexander Korenshteyn < alexanderko...@gmail.com> wrote: > Hi, >Ignite does support Hibernate L2 cache: > check out: https://apacheignite.readme.io/v1.0/docs/hib

Re: Does Ignite support Distributed and Remote Second Level Cache for Hibernate?

2019-10-07 Thread Alexander Korenshteyn
Hi, Ignite does support Hibernate L2 cache: check out: https://apacheignite.readme.io/v1.0/docs/hibernate-l2-cache example: https://github.com/apache/ignite/blob/master/examples/src/main/java-lgpl/org/apache/ignite/examples/datagrid/hibernate/HibernateL2CacheExample.java Thanks, Alex On Su

Aw: Re: Re: Ignite Servlet with Tomcat: Memory

2019-10-07 Thread Uwe Geercken
  thanks Ilya for the quick reply.   So I guess that when I increase the memory for tomcat, then the Ignite process running within my tomcat based web application will take a share of it.   It is not that I have large memory requirements, but I want to code the application to be configurable a

Re: Re: Ignite Servlet with Tomcat: Memory

2019-10-07 Thread Ilya Kasnacheev
Hello! The following documentation is to the rescue: https://crunchify.com/how-to-change-jvm-heap-setting-xms-xmx-of-tomcat/ Regards, -- Ilya Kasnacheev пн, 7 окт. 2019 г. в 14:11, Uwe Geercken : > Hello Ilya, > > I have added the listener for Ignite like this to my web.xml configuration: > >

Aw: Re: Ignite Servlet with Tomcat: Memory

2019-10-07 Thread Uwe Geercken
Hello Ilya,   I have added the listener for Ignite like this to my web.xml configuration:           org.apache.ignite.startup.servlet.ServletContextListenerStartup   with followinf parameters:     IgniteConfigurationFilePath   config/ignite-config.xml     When I run tomcat

Re: JUL logging problem

2019-10-07 Thread Ilya Kasnacheev
Hello! When ignite is in verbose mode, it adds IGNITE_CONSOLE_APPENDER implicltly. You probably don't have any appenders to console set up, hence you can't see anything. Regards, -- Ilya Kasnacheev сб, 5 окт. 2019 г. в 13:49, Mikael : > Hi! > > I must have done some silly mistake but I can't

Re: ClassCastException retrieving cached object

2019-10-07 Thread Evgenii Zhuravlev
Hi, Peer class loading doesn't work with model classes, more information regarding use cases for peerClassLoading can be found here: https://www.gridgain.com/docs/latest/developers-guide/peer-class-loading Evgenii вс, 6 окт. 2019 г. в 04:09, niamin : > Working with Ignite 2.7.6 using spring co

Re: Confusion with Events

2019-10-07 Thread Ivan Pavlukhin
Hi KJQ, > *One thing I did notice in my test environment is that the events can be > raised in drastically different times? * Hard to say what is it. First idea is that there is something preventing cache2 entries from expiration, e.g. someone reads cache2 entries. Would be great to have an isol

Re: Exception - Method rawReader can be called only once

2019-10-07 Thread Ilya Kasnacheev
Hello! You can have two chains of methods: one which only works with "regular" reader, and second which works with "raw" reader. Otherwise, you can file a ticket to Apache Ignite JIRA concerning removal of this limitation. Regards, -- Ilya Kasnacheev пт, 4 окт. 2019 г. в 22:22, javastuff@

Re: Issue with adding nested index dynamically

2019-10-07 Thread Ilya Kasnacheev
Hello! I have added you to Contributor role. Now you should be able to assign issue to yourself. Please read https://cwiki.apache.org/confluence/display/IGNITE/How+to+Contribute Regards, -- Ilya Kasnacheev пт, 4 окт. 2019 г. в 20:49, Hemambara : > https://issues.apache.org/jira/browse/IGNITE

Re: ClassCastException retrieving cached object

2019-10-07 Thread Ilya Kasnacheev
Hello! Key-value classes will not be peer class loaded. You need to deploy them explicitly to classpath of all nodes. Regards, -- Ilya Kasnacheev вс, 6 окт. 2019 г. в 04:09, niamin : > Working with Ignite 2.7.6 using spring config from your examples so > peerclassloading is enabled. I get Cla

Re: Ignite Servlet with Tomcat: Memory

2019-10-07 Thread Ilya Kasnacheev
Hello! Can you please provide more info? There's a *lot* of ways to calculate memory usage, we have no idea which one you are referring to. Can you copy the relevant messages? Regards, -- Ilya Kasnacheev сб, 5 окт. 2019 г. в 15:22, Uwe Geercken : > Hello, > > I have integrated the Ignite serv

Re: Data Streamer API issues to load data into cache

2019-10-07 Thread Ilya Kasnacheev
Hello! Unfortunately it's hard to say what's going on. Can you please share the stack trace? Furthermore, my recommendation will be to either disable failure detection altogether, or increase failureDetectionTimeout. Regards, -- Ilya Kasnacheev пт, 4 окт. 2019 г. в 09:07, vinod.jv : > Hi, > >