Re: Apache Tez support for Ignite

2017-08-10 Thread ravi
implementation similar to In memory map reduce?. Regards Ravi -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Apache-Tez-support-for-Ignite-tp16086p16104.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Apache Tez support for Ignite

2017-08-10 Thread ravi
Hi Val, I have seen the hadoop accelerator link you shared. If i have to choose from the following combination for the performance reason which one should i choose? why? and when should i choose? 1) Hive on MR(Standard Hadoop MR) 2) Hive on Ignite MR 3) Hive on Spark 4) Hive on Tez 5) Hive on Te

Re: Running Spark SQL on Spark Thrift Server with Ignite

2017-08-12 Thread ravi
Hi Val, Thanks for the reply. Can you share some example or sample code snippet for the steps you have explained?. The link you have shared doesn't explain mapping Hive/Spar RDD to Ignite RDD context? Regards Ravi.P -- View this message in context: http://apache-ignite-users.70518.x6.nabble.

Apache Ignite JDBC Support for SAP BOXI or Other BI tools

2017-08-12 Thread ravi
better than Spark SQL? Regards Ravi -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Apache-Ignite-JDBC-Support-for-SAP-BOXI-or-Other-BI-tools-tp16154.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Loading data from Hive Table into Ignite Cache

2017-08-22 Thread ravi
or of using IGFS and run Hive QL using Tez+LLAP+ORC. We wanted to run native Ignite SQL. So please suggest any other alternate approach Regards Ravi -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Loading-data-from-Hive-Table-into-Ignite-Cache-tp16367.html

Re: Loading data from Hive Table into Ignite Cache

2017-08-22 Thread ravi
Hi, Thanks for the reply. Using Automatic RDBMS Configuration, Does ignite web console supports loading the data from Hive Database(No SQL DB- using Hive Server2 Driver?). Can you share some links if any such a sample is available? Regards Ravi -- View this message in context: http

Re: Kerberos installation

2017-08-26 Thread ravi
Hi, I have kerberos enabled zookeeper based hadoop HA environment. With out ignite, I am able to access my hadoop file system with valid kerberos ticket. However by running the below command, I am getting below exception. Is there anything i am missing in default-config.xml?. Can u provide some

Re: Kerberos installation

2017-08-27 Thread ravi
provide the needed ignite config file which has KerberosHadoopFileSystemFactory and its allowed properties?. We are not finding the enough documentation. Please reply. Regards Ravi -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Kerberos-installation

Re: Connection refused via JDBC

2016-01-11 Thread Ravi
Already subscribed.. stil it doesnt goes to mail.what can i do. Coming to questn where to chnge the connection name n database n localhost to make it effect? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Connection-refused-via-JDBC-tp2490p2492.html Sent from

Alternate way of using DBH2ServerStartup ??

2016-01-17 Thread Ravi
/** * Start H2 database TCP server in order to access sample in-memory database from other processes. */ public class DbH2ServerStartup { /** Create table script. */ private static final String CREATE_PERSON_TABLE = "create table if not exists PERSON(id bigint not null, first_name

Re: Alternate way of using DBH2ServerStartup ??

2016-01-18 Thread Ravi
thanx now its working. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Alternate-way-of-using-DBH2ServerStartup-tp2599p2614.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

get the all values stored into cache name?

2016-01-19 Thread Ravi
Ignite cachedata=ignite.getOrCreateCache(cacheName) entered the data into cachedata.put() how to get all data using cacheName from cachedata?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/get-the-all-values-stored-into-cache-name-tp2631.html Sent from the A

Affinity Key??

2016-01-22 Thread Ravi
what is affinity in practical terms. and affinity is predefined term or we need to make affinity function? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Affinity-Key-tp2669.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Set time limit for particular cache

2016-02-02 Thread Ravi
How to set time limit or see time limits of a particular cache?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Set-time-limit-for-particular-cache-tp2810.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

read configuration usign cachemanager?

2016-02-03 Thread Ravi
how to read configuration ignite.xml using cachemanager ? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/read-configuration-usign-cachemanager-tp2813.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

how to create instance of CacheManager of ignite

2016-02-07 Thread Ravi
This is example of ehcacheprovider private CacheManager Cmanager; //here config = ehcache.xml public EhCacheProvider(String config) throws CacheException { CacheManager.create(); //initialize cache mana

Re: how to create instance of CacheManager of ignite

2016-02-08 Thread Ravi
SORRY but I DIDN'T get you.. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/how-to-create-instance-of-CacheManager-of-ignite-tp2876p2880.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: how to create instance of CacheManager of ignite

2016-02-08 Thread Ravi
i want to intitalize the cachemanager with particular xml file. How will i do it. CacheManager.getInstance(xmlfile) does nto exist. Tell me other way to do it? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/how-to-create-instance-of-CacheManager-of-ignite-tp287

how to get all keys stored into ignitecache??

2016-02-09 Thread Ravi
i have named object of ignitecache . cache= ignite.getOrCreateCache(cacheregion); cache.put(key, value); i store the data into cache using region and key with its value. now i want to fetch all the keys only ?? -- View this message in context: http://apach

Re: how to get all keys stored into ignitecache??

2016-02-10 Thread Ravi
i have one more doubt that i created cacheregion as defined above. And if m trying to put key and value.. it stores as single. key and value.. i want it to store lots of key and value into same cache region by passing key and value what should i use instead of getOrcreateCache()? -- View this

lock and unlock the cache key?

2016-02-11 Thread Ravi
how it can be performed as i want to lock a particular key and then unlock it.Suggest me the way how can i check whether key is locked or not? cache.lock(key)- it locks the key but how to unlock the key?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/lock-and

Re: lock and unlock the cache key?

2016-02-11 Thread Ravi
Lock.unlock(long) here long is needed but i want unlock object as key?? as i locked using IgniteCache.lock(key).? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/lock-and-unlock-the-cache-key-tp2950p2954.html Sent from the Apache Ignite Users mailing list archi

Re: lock and unlock the cache key?

2016-02-11 Thread Ravi
tHANKS to all -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/lock-and-unlock-the-cache-key-tp2950p2958.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

intialize the cache manager?

2016-02-11 Thread Ravi
how to initialize cache manager by passing configuration ignite.xml file path? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/intialize-the-cache-manager-tp2972.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

binding exception?

2016-02-15 Thread Ravi
as I m running the tomcat server at certain port and then i try to start the configuration of xml on the same port it shows this exception why? how to judge which port it is needed and whether ignite nodes can work on tomcat server or not so what should i do? java.net.BindException: Address alre

Re: Ignite SqlFieldQuery Unicode Characters Support

2020-06-17 Thread Ravi Makwana
Hi, We have started our ignite nodes (server & client) with mentioned jvm parameter and it works fine. Thanks for the quick response. Regards, Ravi Makwana On Mon, 8 Jun 2020 at 18:49, Ilya Kasnacheev wrote: > Hello! > > I have met an error like this one, and my recommendation i

Ignite Client Node Stopped With Out Of Memory

2020-10-24 Thread Ravi Makwana
Hi, We are using Apache Ignite 2.7.0 binary and servers are using Linux OS & app servers are using Windows OS.We are using Apache Ignite .Net APIs. Recently we have noticed that our application is stopping due to a client node throwing Out Of Memory error which we have seen in ignite client node

Re: Ignite Client Node Stopped With Out Of Memory

2020-10-28 Thread Ravi Makwana
ore than > 2GB of memory. > JVM and memory regions pre-allocate all of it, leaving nothing for .NET to > use. > > Please check the `Platform` column in the Task Manager - does it say `32 > bit`? > If yes, then try disabling `Prefer 32 bit` in the project properties. > > O

Re: Ignite Client Node Stopped With Out Of Memory

2020-10-28 Thread Ravi Makwana
aller value for *QueryBase.PageSize*. > > If you use the default value of 1024, your cache entries are very large. > What does the data look like? > > [1] https://issues.apache.org/jira/browse/IGNITE-13635 > > On Wed, Oct 28, 2020 at 1:43 PM Ravi Makwana > wrote: > >> Hi,

Re: Ignite Client Node Stopped With Out Of Memory

2020-10-28 Thread Ravi Makwana
set the lower value and can able to replicate the scenario? Thanks, On Wed, 28 Oct, 2020, 7:53 pm Ravi Makwana, wrote: > > > > > On Wed, 28 Oct, 2020, 5:55 pm Pavel Tupitsyn, > wrote: > >> I found a bug in Ignite [1] which probably causes the issue on your side. >&

Ignite Client Node OOM Issue

2020-11-04 Thread Ravi Makwana
HI, We are using Apache Ignite 2.7.0 binary and servers are using Linux OS & app servers are using Windows OS.We are using Apache Ignite .Net APIs. Recently we have noticed that our application (Client Node) is stopping with OOM error. App server has 32 GB RAM & we are specifying JVM Heap = 8 GB.

Ignite Client Node Stopped : OOM Error

2020-11-05 Thread Ravi Makwana
Hi, We are using Apache Ignite 2.7.0 binary and servers are using Linux OS & app servers are using Windows OS.We are using Apache Ignite .Net APIs. Recently we have noticed that our application is not stopped with an OOM error. App server has 32 GB RAM & We are specifying JVM Heap = 8 GB I am s

Re: Ignite Client Node OOM Issue

2020-11-06 Thread Ravi Makwana
Hi, *1) What load profile do you have? * Ans: We have 2 clusters, each having 2 nodes, one cluster is having approx 15 GB data (Replication) & second cluster is having approx 5 GB data (Partitioned) with eviction policy. *2) Do you use SQL queries?* Ans: Yes, We are using. *3) Is it possible to

Ignite SqlFieldQuery Unicode Characters Support

2020-06-05 Thread Ravi Makwana
45' We got below mentioned result data for AddressFull property. *"北京市�阳区安贞西里四区甲1�, 北京, 中国, 100011"* Based on this test we have couple of questions on the same. 1) Is SqlFieldQuery .net api supporting Unicode characters? 2) If Yes, How do we overcome this issue? Regards, Ravi Makwana

hibernate named query with ignite

2016-03-30 Thread Ravi Puri
Can i fetch the data from database using NamedQuery feature of hibernate ? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/hibernate-named-query-with-ignite-tp3770.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

hibernate open session error while running with tomcat server

2016-04-11 Thread Ravi Puri
this is the error throws while executing with long start = System.currentTimeMillis(); System.out.println("Entering into loadCache ApacheIgniteCacheConfiguration"); // Start loading cache from persistent store on all caching nodes. cache.loadCache(null,100_000);// here thro

Re: hibernate open session error while running with tomcat server

2016-04-11 Thread Ravi Puri
yea it was fixed when i used to run the project as an individual but when i try to integrate with other project it throws an error . as i use all the jars to refr the othr project but stil it throws an error. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/hibern

how to check whether server and client connected?

2016-04-13 Thread Ravi Puri
where to configure the client and server to interact. Ignition.setClientMode(true); this has been set but how to access local and remote nodes and how to start caching the data remotely available? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/how-to-check-w

link cache to object class?

2016-04-13 Thread Ravi Puri
how can i link the cache created in configuration to the object class so that i can decide which cache is for which class? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/link-cache-to-object-class-tp4119.html Sent from the Apache Ignite Users mailing list archiv

how to connect hibernate database to fetch and put data in ocnfiguration.xml

2016-04-14 Thread Ravi Puri
i want to connect my sql hibernate database in your ignite.xml and once the configuration is loaded it should be automatically connected to database. is there any option so that i can fetch the data from database (which is already defined in configuration ignite.xml ) and retrieve it at client sid

do you support json based cache?

2016-04-14 Thread Ravi Puri
I want to know do you support json based data to be cached and implemnented? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/do-you-support-json-based-cache-tp4160.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: do you support json based cache?

2016-04-15 Thread Ravi Puri
nopes. It will complicate my json. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/do-you-support-json-based-cache-tp4160p4224.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

can we make generic class for cachehibernatepojostore?

2016-04-20 Thread Ravi Puri
i have a query i have one class which loads cacheconfiguration class(CacheConfig) with its cachehibernatepojostore(specific to class) passed in factory builder which i passed as T. public class CacheConfig { private static final long serialVersionUID = 1L; private static final

Automatic persistence ?

2016-04-21 Thread Ravi Puri
i generated all the related pojo and xml classess. please let me knw how to test that thing? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Automatic-persistence-tp4413.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

At client side unable to use excute transaction?

2016-04-22 Thread Ravi Puri
server side -- at server side i loaded my data with person and also configured with my database.. cache.loadCache(null,100_000); cache.size();// It returns length of cache. client side -- public static void main (String args[]) { Ignition.setClientMode(true

asm.writer error

2016-04-26 Thread Ravi Puri
error at cache.loadCache(null,100_00); please provide the reason as i tried with asm-all 4.2 jar and even with spring.jar and also asm-2.2.3 jar & asm-1.5.3 jar java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.(Z)V at net.sf.cglib.core.DebuggingClassWriter.(DebuggingClassWriter.

Re: Automatic persistence ?

2016-04-26 Thread Ravi Puri
yea i tried but i generated schema from schema import and i want run cache.loadCache after loading the configuration which is generated automatically. how can i do it. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Automatic-persistence-tp4413p4537.html Sent f

how to fetch data when its loaded using cache.loadCache(null,100_00)?

2016-04-28 Thread Ravi Puri
i loaded my data into cache from database id fname Lname 1 ravi puri 2 ravi load 3 ravi nikita configuration usign cache.loadCache(null,10). but i want to access data from cache. so how can i do it? -- View this message in context: http://apache

Re: how to fetch data when its loaded using cache.loadCache(null,100_00)?

2016-04-28 Thread Ravi Puri
i am getting this error while fetching cache.get(1); at client side Exception in thread "main" org.hibernate.LazyInitializationException: could not initialize proxy - no Session at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersiste

Just a basic query generally?

2016-05-09 Thread Ravi Puri
how many years experince needed to use the ignite smoothly and what should be d basic things should be cleared like springs or java to learn ignite easily ? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Just-a-basic-query-generally-tp4852.html Sent from the Apa

Address bind error

2016-08-09 Thread Ravi Puri
I got the below error as i am running tomcat server at localhost and also the ignite-config.xml at same host. is this the problem due to this? or is it something error not related to i mentioned above?? WARNING: FAILED ServerConnector@e11eade{HTTP/1.1}{0.0.0.0:8080}: java.net.BindException: Add

Clear the cached data?

2016-08-11 Thread Ravi Puri
I want to clear all the data cached in server and client nodes. So how to do it as i have to do it another class. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Clear-the-cached-data-tp6946.html Sent from the Apache Ignite Users mailing list archive at Nabble.co

LOOK THORUGH THIS ERROR

2016-08-11 Thread Ravi Puri
java.lang.NoSuchMethodError: org.hibernate.SessionFactory.openSession()Lorg/hibernate/Session; at org.apache.ignite.cache.store.hibernate.CacheHibernateStoreSessionListener.onSessionStart(CacheHibernateStoreSessionListener.java:178) at org.apache.ignite.internal.processors.cache.sto

Re: LOOK THORUGH THIS ERROR

2016-08-12 Thread Ravi Puri
Still the same error as i matched ignite-core 1.5 ver with ignite-hibernate 1.5... but still it is not resolved. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/LOOK-THORUGH-THIS-ERROR-tp6977p7017.html Sent from the Apache Ignite Users mailing list archive at Nab

Re: LOOK THORUGH THIS ERROR

2016-08-15 Thread Ravi Puri
-- View

Re: LOOK THORUGH THIS ERROR

2016-08-16 Thread Ravi Puri
THIS IS MY JAR LIST IN DEPENDENCIES which i reduced and matched as per ur suggestions . Still the same error , now what to do ? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/LOOK-THORUGH-T

Re: LOOK THORUGH THIS ERROR

2016-08-16 Thread Ravi Puri
No i'm not using maven . I am adding this jars to project and using it.. Everything was working fine but this error doesnt allow me to go forward..? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/LOOK-THORUGH-THIS-ERROR-tp6977p7125.html Sent from the Apache Igni

Re: LOOK THORUGH THIS ERROR

2016-08-17 Thread Ravi Puri
is it necessary to provide project? Error can be resolved without that also ryt?? -jars version matched . still error not resolved -dependencies send to u and i changed it from beta version to normal 1.5 finl version jars. still error not resolved what will be other reasons for this error as thi

Re: LOOK THORUGH THIS ERROR

2016-08-26 Thread Ravi Puri
I wont be able to use maven and neither uplaod a project. But I found the class error using debugger. It was found in cache.loadCache(null,1) . During this process it throws error. Is there any other way to load cache data using IgniteCache Object. -- View this message in context: http

Re: LOOK THORUGH THIS ERROR

2016-08-26 Thread Ravi Puri
All classpaths have same jars. Any other options to cache data apart from loadCache() method?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/LOOK-THORUGH-THIS-ERROR-tp6977p7346.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: LOOK THORUGH THIS ERROR

2016-09-07 Thread Ravi Puri
hello, can u provide with other method to load data into cache or nay other way ? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/LOOK-THORUGH-THIS-ERROR-tp6977p7600.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: LOOK THORUGH THIS ERROR

2016-09-09 Thread Ravi Puri
yes i saw streamer and tried with maven dependencies by adding pom.xml but i convert in java project and run the same. still the same error ? i tried every possible way to face this error. I think there is bug in method of loadCache() while integrating with multiple java classes and there is no a

Loading data into cache timing issue?

2016-09-27 Thread Ravi Puri
How to manage time issue when loading data using loadCache() method. It takes 10 mins to load 170 number of data's. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Loading-data-into-cache-timing-issue-tp7965.html Sent from the Apache Ignite Users mailing list arc

Re: binding exception?

2016-02-15 Thread Ravi Puri
the line of code is Cachemanager obj=(CacheManager) cachingProvider.getCacheManager(uri,null); and whole error is [18:41:55]__ [18:41:55] / _/ ___/ |/ / _/_ __/ __/ [18:41:55] _/ // (7 7// / / / / _/ [18:41:55] /___/\___/_/|_/___/ /_/ /___/

Re: binding exception?

2016-02-15 Thread Ravi Puri
how to set either in configuration or in code? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/binding-exception-tp2999p3018.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: binding exception?

2016-02-16 Thread Ravi Puri
System.setProperty("org.eclipse.jetty.util.log.class", "org.eclipse.jetty.util.log.StdErrLog"); System.setProperty("org.eclipse.jetty.util.log.StdErrLog", "ERROR"); it helped me thanx.. -- View this message in cont

Linking sessions and nodes ?

2016-02-25 Thread Ravi Puri
I want to run separate nodes for separate session.. eg. difrnt node for login n another node fr logout . How can i do this via configuration or some code chnges in ignite?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Linking-sessions-and-nodes-tp3199.html Sen

update the sql database after a particular limit?

2016-02-29 Thread Ravi Puri
How to update the sql database using cache after a particular time interval?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/update-the-sql-database-after-a-particular-limit-tp3250.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: update the sql database after a particular limit?

2016-02-29 Thread Ravi Puri
Suppose i have a employee data and its login time . I want to fetch the data from database and store it in cache and everytime i login if its changes in database then i want to reflect back in cache too. As i want my code to work consistently with cache data rather than database ?? please suggest

storekeepbinary error?

2016-02-29 Thread Ravi Puri
how to resolve above error? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/storekeepbinary-error-tp3284.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Hibernate connection inspite of jdbc?

2016-03-08 Thread Ravi Puri
Given below load method of cachejdbcpersonstore. this is done using preparedstatement n resultset. I want to implement the same using hibernate n hql query how to do this ? and what is CacheStoreSession ? where to use the same if i want to implement using hibernate by replacing this Connection c

Re: Hibernate connection inspite of jdbc?

2016-03-10 Thread Ravi Puri
can U tell me what will be probable error in this part as it throws after returning listner succesfully? code: * cacheCfg.setCacheStoreSessionListenerFactories(new Factory() { @Override public CacheStoreSessionListener create() { CacheHibernateStoreSessionListe

Re: Hibernate connection inspite of jdbc?

2016-03-13 Thread Ravi Puri
Just added mySql configuration to that configuration.Still its not working -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-connection-inspite-of-jdbc-tp3412p3481.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Hibernate connection inspite of jdbc?

2016-03-14 Thread Ravi Puri
now i got this error [16:34:55,477][ERROR][ignite-#7%pub-null%][GridJobWorker] Failed to execute job due to unexpected runtime exception [jobId=d21bcc47351-c022f034-e4a4-4d2a-9b98-6f7824de393b, ses=GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=o.a.i.i.processors.cache.GridCacheAdapter$Lo

Re: Hibernate connection inspite of jdbc?

2016-03-14 Thread Ravi Puri
NOW I AM GETTING THIS ERROR ? [17:12:19,118][ERROR][ignite-#7%pub-null%][GridJobWorker] Failed to execute job due to unexpected runtime exception [jobId=dddeee47351-25626d3f-89d5-4482-a7ae-73faa09b8eac, ses=GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=o.a.i.i.processors.cache.GridCacheAd

Re: Hibernate connection inspite of jdbc?

2016-03-15 Thread Ravi Puri
i resolved that.. now what is java.lang.VerifyError [14:13:29,374][ERROR][exchange-worker-#49%null%][GridDhtPartitionsExchangeFuture] Failed to reinitialize local partitions (preloading will be stopped): GridDhtPartitionExchangeId [topVer=AffinityTopologyVersion [topVer=1, minorTopVer=1], nodeId=4

Re: Hibernate connection inspite of jdbc?

2016-03-15 Thread Ravi Puri
How would i know which version ignite hibernate is using. as per your example hibernate 3 jar is used so what will be the matching ignite hibernate version of jar??? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-connection-inspite-of-jdbc-tp3412p3511.

Hibernate loadcache error?

2016-03-16 Thread Ravi Puri
i am unable to get rid of this error. tried with different jars and changes in hibernate way to cache the data. Suggest some ways. after this line of code it throws error. cache.loadCache(null,1); [13:30:21,642][ERROR][ignite-#7%pub-null%][GridJobWorker] Failed to execute job due to

Re: Hibernate loadcache error?

2016-03-21 Thread Ravi Puri
how to enable ignite hibernate module? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-loadcache-error-tp3534p3597.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Hibernate connection inspite of jdbc?

2016-03-21 Thread Ravi Puri
i tried adding hibernate jars and its related jars also.. but it stil shows the same error...? any other way to do it through hibernate? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-connection-inspite-of-jdbc-tp3412p3603.html Sent from the Apache Ig

Re: Hibernate connection inspite of jdbc?

2016-03-22 Thread Ravi Puri
yes .. its the same issue -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-connection-inspite-of-jdbc-tp3412p3618.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Hibernate connection inspite of jdbc?

2016-03-25 Thread Ravi Puri
yes its pointing the correct folder. Still facing this issue. I think there is problem with hibernate open sesssion which is not mentioned anywhere in program? Session hibSes = ses.attachment(); n mostly it throws error in this statement cache.loadCache(null, 1); it should go to loadcache

Re: Hibernate loadcache error?

2016-03-25 Thread Ravi Puri
still its not working . i am facing the same issue again and again. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-loadcache-error-tp3534p3680.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Hibernate loadcache error?

2016-03-27 Thread Ravi Puri
yes its pointing the correct folder. Still facing this issue. I think there is problem with hibernate open sesssion which is not mentioned anywhere in program? Session hibSes = ses.attachment(); n mostly it throws error in this statement cache.loadCache(null, 1); it should go

Error in cache.loadCache(null,ENTRY_COUNT);

2016-03-28 Thread Ravi Puri
Error at cache.loadCache(null,100_000) Caused by: class org.apache.ignite.compute.ComputeUserUndeclaredException: Failed to execute job due to unexpected runtime exception [jobId=a2275acb351-93f69876-63cd-4130-b8b6-b82956f489f1, ses=GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.apache

Re: Hibernate loadcache error?

2016-03-28 Thread Ravi Puri
Already tried everything.I didnt think u understnd it. Do me a favour can u provide the working prjct related to hibernate integrated with ignite at ravikumarpur...@gmail.com . NOTE: PLEASE DO NOT SEND THE below LINK . PROVIDE ME THE WORKING THING as it does not work with dynamic web project as j

Re: Hibernate loadcache error?

2016-03-29 Thread Ravi Puri
thanks I rectified the error. antlr.jar was missing. :) -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Hibernate-loadcache-error-tp3534p3729.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

RE: Gridgain8.7.14 in kubernetes problem

2020-06-10 Thread Saxena, Ravi (CMS)
Delete and redeploy with different name. Regards, Ravi Saxena Stay home stay safe From: Denis Magda [mailto:dma...@apache.org] Sent: Wednesday, June 10, 2020 10:05 AM To: user Subject: Re: Gridgain8.7.14 in kubernetes problem Hi, This user list is intended for Ignite questions. Please direct

RE: Re:RE: Gridgain8.7.14 in kubernetes problem

2020-06-11 Thread Saxena, Ravi (CMS)
This is just a workaround. Delete your ignite cluster and all the related PV'sand later install with different service name Or you can also try to re-deploy with persistence off Regards, Ravi Saxena Stay home stay safe From: s [mailto:13581902...@163.com] Sent: Thursday, June 11, 2020

Unsubscribe

2018-12-27 Thread Ravi kumar Puri
Unsubscribe

Re: link cache to object class?

2016-04-13 Thread Ravi kumar Puri
cache a name that is related to an objects simple class name. > > As an example, you have a class “Person”. Create the cache with the same > name and get a reference to it using ignite.cache(“Person”) > > — > Denis > > > On Apr 13, 2016, at 1:35 PM, Ravi Puri > wrote:

Re: how to check whether server and client connected?

2016-04-13 Thread Ravi kumar Puri
cess to frequently accessed data. > Refer to https://apacheignite.readme.io/docs/near-caches for details. > > 2016-04-13 12:25 GMT+03:00 Ravi Puri : > >> where to configure the client and server to interact. >> >> Ignition.setClientMode(true); >> >> this has been set but how

Re: do you support json based cache?

2016-04-14 Thread Ravi kumar Puri
I want to cache the json formated object data of a class into ignite cache as json parameter and able to retrieve individual attributes from json cached data. Same i need to update the cache as new data wil come into my json data On 14-Apr-2016 23:42, "vkulichenko" wrote: > Hi R

Re: how to connect hibernate database to fetch and put data in ocnfiguration.xml

2016-04-14 Thread Ravi kumar Puri
configuration to automatic update the database wid my newly arrived data? On 14-Apr-2016 23:45, "vkulichenko" wrote: > Ravi, > > This can be achieved with persistence store [1]. You can use loadCache() > for > bulk loading or warming up the cache, or utilize read-through

Re: can we make generic class for cachehibernatepojostore?

2016-04-20 Thread Ravi kumar Puri
I didnt get u... u mean i have to add cachehibernatestore to client classpath class. And how can i load it to all d nodes? As i use only one server n one node On 21-Apr-2016 00:24, "vkulichenko" wrote: > Hi Ravi, > > Currently you need to have the cache store implementation c

Re: Automatic persistence ?

2016-04-21 Thread Ravi kumar Puri
Yea i tried it.. but i want to use in eclipse n run d demo .. On 21-Apr-2016 20:26, "Alexey Kuznetsov" wrote: > Hi, Ravi! > > Did you try example for POJO store that shipped with Ignite? > > See Readme.txt for this example. > > https://github.com/apache/ignite/blo

Re: At client side unable to use excute transaction?

2016-04-22 Thread Ravi kumar Puri
How to materialize it? On 23-Apr-2016 02:53, "Alexey Goncharuk" wrote: > Val, > > StringBuilder.append() is what javac generates for `"Read value: " + val` > in the code. > > Ravi, > > Hibernate returned you a collection proxy for your map, h

Re: LOOK THORUGH THIS ERROR

2016-08-11 Thread Ravi kumar Puri
Ignite-hibernate 1.2 incubating jar.. is this what u meant? On 11-Aug-2016 18:40, "Alisher Alimov" wrote: > Hi! > > Can you specify hibernate version that you use? > > With best regards > Alisher Alimov > alimovalis...@gmail.com > > > > >

Re: Clear the cached data?

2016-08-11 Thread Ravi kumar Puri
ll nodes and theoretically IgniteCache#clear will be > faster to clean cache > > With best regards > Alisher Alimov > alimovalis...@gmail.com > > > > > On 11 авг. 2016 г., at 12:53, Alexey Kuznetsov > wrote: > > Alisher, Ravi. > > cache.clear() co

Re: LOOK THORUGH THIS ERROR

2016-08-13 Thread Ravi kumar Puri
no i dont have any other version of hibernate. no i was unable to resolve at that time too. coz i didnt get any proper answer from forum. Now what to do ? On Sat, Aug 13, 2016 at 12:40 AM, vkulichenko wrote: > Is it possible that you already have another version of Hibernate in your > applicatio

  1   2   >