Unsubscribe

2017-08-11 Thread Marcus Simonsen

PeerClassLoading example using cacheLoaders

2017-08-11 Thread daniels
I use the caching of ignite with cacheLoaderFactories. And I met the perrClassLoading problem. I want not to copy that classes to all nodes. Now i want not to use cacheLoaderFactories.What methods will you offer to replace them so that there doesn't come the problem of peerclasLoading? My

POJO field having wrapper type, mapped to cassandra table are getting initialized to respective default value of primitive type instead of null if column value is null.

2017-08-11 Thread kotamrajuyashasvi
Hi I'm using ignite with cassandra as persistent store. I have a POJO class mapped to cassandra table. I have used KeyValuePersistenceSettings xml bean to map POJO to cassandra table. In the POJO one of the fields is Integer (wrapper class) mapped to int column in cassandra table. When I load any

Re: Ignite server send big data to client and make client crash

2017-08-11 Thread Mikhail Getmanov
-- Отправлено из мобильного приложения Яндекс.Почты14:59, 11 августа 2017 г., Mikhail Cherkasov :Hi Shawn,Did you figure out what was wrong?Thanks,Mikhail.On Fri, Aug 11, 2017 at 9:31 AM, shawn.du wrote:sorry, Ignore this.

Re: I am not able to read mxbean values of ignite

2017-08-11 Thread Mikhail Getmanov
-- Отправлено из мобильного приложения Яндекс.Почты13:47, 11 августа 2017 г., neerajbhatt :Thanks Slave, this is working for us now. There was a configuration issue inorg.apache:clsLdr=*-- View this message in context:

Re: Setting custom Log location - log4j

2017-08-11 Thread Mikhail Getmanov
-- Отправлено из мобильного приложения Яндекс.Почты11:12, 11 августа 2017 г., vkulichenko :This simply means that environment variable is not picked up by the process.If you run in Eclipse, probably you just need to restart it.-Val-- View this message in context:

Re: how to append data to IGFS so that data gets saved to Hive partitioned table?

2017-08-11 Thread Mikhail Getmanov

Re: Setting custom Log location - log4j

2017-08-11 Thread Mikhail Getmanov
-- Отправлено из мобильного приложения Яндекс.Почты19:19, 11 августа 2017 г., Mikhail Getmanov :-- Отправлено из мобильного приложения Яндекс.Почты11:12, 11 августа 2017 г., vkulichenko :This simply means that environment variable is not picked

Activation: slow and: Ignite node crashed in the middle of checkpoint.

2017-08-11 Thread Roger Fischer (CW)
Hello, I am wondering if the following behavior is typical, or if it represents a concern. I have a 3 node cluster with native persistence. Each node as 4 CPU and 16 GB of RAM. Each node has ~45 GB used in work/db. Total across the 3 nodes is about 36.5 M objects. I am using SQL queries, and

Re: PeerClassLoading example using cacheLoaders

2017-08-11 Thread vkulichenko
If you have a custom implementation of CacheLoader, you need to deploy this implementation on all nodes. I'm afraid, there is no workaround. Note that Ignite provides CacheStore implementations for RDBMS [1] and Cassandra [2] out of the box, so there is a chance that you don't need custom one in

Re: OOM in Heap though offHeap is available/free

2017-08-11 Thread vkulichenko
When you enable the on-heap cache, is saves anything that you access. If there is no eviction policy and you constantly update/read new keys, you will very likely run out of heap memory. Configure eviction policy if you want to limit the size of on-heap cache. -Val -- View this message in

Re: Apache Tez support for Ignite

2017-08-11 Thread vkulichenko
I doubt there is a general answer, as it will depend on your particular use case. Ignite MR is very easy to install, so I think you should just try it out and compare with other options. -Val -- View this message in context:

Re: Cache loader factory with peer class enabled mode

2017-08-11 Thread vkulichenko
The latest question is described here: http://apache-ignite-users.70518.x6.nabble.com/PeerClassLoading-example-using-cacheLoaders-td16136.html -Val -- View this message in context:

Re: PeerClassLoading example using cacheLoaders

2017-08-11 Thread daniels
Thank you,very much. And one more question, The load method of cacheLoader is called when I do get from cache with the key which does not exists. Isn't it? Isnt it solution without passing chacheLoader -I do get and if the key is absent ,do put that key in the cache,in other words do

Re: Resource Management (connection pooling) on Ignite Cluster

2017-08-11 Thread afedotov
Hi, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send an empty email to user-subscr...@ignite.apache.org and follow simple instructions in the reply. Did you have a chance to take a look at JDBC client node

Invitation: GoToWebinar - Introduction to Apache Ignite, a memory-cen... @ Wed Aug 16, 2017 12am - 1am (PDT) (user@ignite.apache.org)

2017-08-11 Thread dmagda
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VEVENT DTSTART:20170816T07Z DTEND:20170816T08Z DTSTAMP:20170811T182601Z ORGANIZER;CN=dma...@gridgain.com:mailto:dma...@gridgain.com

Re: PeerClassLoading example using cacheLoaders

2017-08-11 Thread daniels
Hi I know it. I dont want to copy that classes to all nodes.Therefore I dont want to use chackeLoaderFactories. I am searching other solution. Now I want to remove loaders. How to organize my cache creation without loaders,but keep the logic in loaders,where to put that logic Thank you

Ignite 2.1 with Karaf 4.1.2

2017-08-11 Thread devis76
Hi guys, i'm testing with Ignite 2.1 with Karaf 4.1.2. "Feature install ignite" doesn't works for me like was with Ignite 1.7. The problem is with ignite-indexing, other bundles works fine. I have modify your ignite-indexing manifest and i have installed manually 213 │ Active │ 80 │ 1.4.196

Re: PeerClassLoading example using cacheLoaders

2017-08-11 Thread afedotov
Hi, Peer class loading works only for compute closures and tasks as described here . it's not applicable for configuration classes or cache entries, so you have to copy that classes to all nodes. Kind regards, Alex. On Fri, Aug 11, 2017 at