Re: Logging documentation

2017-09-08 Thread Dmitriy Setrakyan
Great! I think the next task should be to explain expiration vs eviction. I am seeing too many questions on it as well. At this point, I am also confused about how it really works. D. On Fri, Sep 8, 2017 at 10:18 AM, Denis Magda wrote: > Unbelievable! So many years went by

Re: Why is PageSize limited to just 16kB?

2017-09-08 Thread John Wilson
Thanks Dmitry! On Fri, Sep 8, 2017 at 4:57 AM, Dmitry Pavlov wrote: > Hi John, > > > > Quite long page will require Ignite to use much time during loading page > from disk or write it back during checkpointing. Ignite is able to change > field value pointwise within page

Re: What's the current behaviour when we use the eviction filter + expiry plicy?

2017-09-08 Thread Mikhail
Hi Aaron, I don't see anything similar for expiration like for eviction. I think the easiest solution is to put that data to another cache with no expiration policy. Thanks, Mikhail. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: AWS Apache Ignite AMI startup.sh reports spurrious errors if options have blanks

2017-09-08 Thread Mikhail
Hi Dave, where can I find startup.sh? it doesn't look like a part of Ignite sources. Thanks, Mikhail. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Starting atomic sequence in Spring XML configuration

2017-09-08 Thread Mikhail
Hi, Try to use lifecycleBeans: https://apacheignite.readme.io/docs/ignite-life-cycle after ignite starting you create a new sequence. Thanks, Mikhail. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Cache Size Monitor -- without making a remote call??

2017-09-08 Thread Chris Berry
Wow. Thank you. That looks like exactly what I need! Thank you! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite node not stopping after segmentation

2017-09-08 Thread Biren Shah
We are on 2.0. Thanks, Biren On 9/8/17, 9:51 AM, "Mikhail" wrote: Hi all, I created a ticket for further investigations:

Re: ignite.destroyCache() method hangs the cluster

2017-09-08 Thread Mikhail
Hi, You use very obsolete version, please try the latest one: 2.1 Thanks, Mikhail. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Logging documentation

2017-09-08 Thread Denis Magda
Unbelievable! So many years went by and finally we got this documentation ready. Thanks a lot Prachi! — Denis > On Sep 8, 2017, at 9:48 AM, Prachi Garg wrote: > > Hello Igniters, > > I see a lot of questions about logging in Ignite . Here is the documentation- >

Re: Design question on the Ignite Web Session Clustering.

2017-09-08 Thread Michael Cherkasov
Hi, I answered in SO, I copy it here: """ if you have a local cache for sessions and sticky sessions why do you need to use ignite at all? However, It's better to go with ignite, your app will have HA, if some node is failed, the whole app still will work fine. I agree you should split app

Unsubscribe

2017-09-08 Thread Jessie Lin
Please unsubscribe

Logging documentation

2017-09-08 Thread Prachi Garg
Hello Igniters, I see a lot of questions about logging in Ignite . Here is the documentation- https://apacheignite.readme.io/docs/logging This should help answer most of your questions :) -P

Re: Cache Size Monitor -- without making a remote call??

2017-09-08 Thread Alexey Kukushkin
Chris, I feel maybe there is a misunderstanding of how partitions assignment works in Ignite. In brief, Ignite has public AffinityFunction interface, which is responsible for assigning

Re: Cache Size Monitor -- without making a remote call??

2017-09-08 Thread Alexey Kukushkin
Chris, Do you need other metrics besides the cache size? If not, then your code above could be replaced with one line: return ignite.cache(cacheName).localSize(CachePeekMode.PRIMARY); -- Best regards, Alexey

Re: Message Queue Size

2017-09-08 Thread dkarachentsev
Hi Rishi, Yes, but you need set heap size at least 512M and proper off-heap size [1]. But you won't be able to store large amount of data, you will need to enable persistence, it will allow to extend available memory with dis k[2]. [1]

Re: Cache Size Monitor -- without making a remote call??

2017-09-08 Thread Chris Berry
Thank you very much for responding. Yes, I am concerned whenever a call must be made to remote machines, particularly when used by my monitoring framework -- because without that data I am relatively blind. And that call (for all metrics) must be very fast and not affect performance. Yesterday,

Re: Ignite Xmx configuration

2017-09-08 Thread Nikolai Tikhonov
Hi Anil, Yes, you are right. On Fri, Jul 28, 2017 at 3:29 PM, Anil wrote: > Hi Nikolai, > > > So i need to add 4gb + indexes size as cache size for off-heap cache ? > > Thanks, > Anil > > On 28 July 2017 at 17:23, Nikolai Tikhonov wrote: > >> Indexes

Re: Continuous Query event buffering OOME

2017-09-08 Thread Nikolai Tikhonov
Hi Michal, I've looked at code and your points look reasonable. In now moment, how you correct noted, you can decrease size of the buffer via IGNITE_CONTINUOUS_QUERY_SERVER_BUFFER_SIZE property to 50 or 100. On Tue, Sep 5, 2017 at 9:14 PM, mcherkasov wrote: > Hi

Starting atomic sequence in Spring XML configuration

2017-09-08 Thread kveskimae
Hey, Looking for a a way to start atomic sequences in Spring XML. My configuration XML contains ... and ... I tried replacing both the cache and grid with a version that initializes sequences like following public class SequencesInitializingIgniteConfiguration implements

ignite.destroyCache() method hangs the cluster

2017-09-08 Thread Ender Ekici
Hi, We have a test machine which has 8 cores with 32Gb ram. We are using ignite 1.8.3. On ignite there is only one cache which has 10M records (db size 7Gb~ ignite cache size 14Gb~) We reload this cache with a cron scheduler.(Every night) For example: cacheName: products (alias) realCacheName:

Re: Why is PageSize limited to just 16kB?

2017-09-08 Thread Dmitry Pavlov
Hi John, Quite long page will require Ignite to use much time during loading page from disk or write it back during checkpointing. Ignite is able to change field value pointwise within page in case of update. In that case and if too long page is selected, one field update, for example 1 byte

unsubscribe

2017-09-08 Thread ????
-- Original -- From: waterg Date: Fri,Sep 8,2017 0:03 PM To: user Subject: Re: unsubscribe -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Cache Size Monitor -- without making a remote call??

2017-09-08 Thread Alexey Kukushkin
Hi Chris, As I understand your concern is "Many times I have seen this particular call take quite a while to return". Are you concerned with asynchronous nature of IgniteCache#size() or you think the existing implementation is too slow and your own implementation would be faster? If this is the

Re: Design question on the Ignite Web Session Clustering.

2017-09-08 Thread Alison Mullan
Hi Shri, The very best way to get answers and advice on these kinds of questions is to use the Apache Ignite Forum. It is a very lively community and very supportive - register here https://ignite.apache.org/ Let me know how you get on and if/when you would like to discuss

Re: Remote Listen in Apache Ignite .Net

2017-09-08 Thread Pavel Tupitsyn
Hi, RemoteListen API is not supported in .NET [1] [2]. If you need cache change notifications, consider Continuous Queries [3]. [1] https://issues.apache.org/jira/browse/IGNITE-1683 [2] https://issues.apache.org/jira/browse/IGNITE-1683 [3]

Re: GROUP_CONCAT function is unsupported

2017-09-08 Thread Vladimir Ozerov
Hi, This function is not supported yet. No immediate plans to fix it as there are lots of tasks with higher priority and impact. But will definitely support it at some point. On Wed, Sep 6, 2017 at 11:38 AM, mhetea wrote: > Hello, > I saw that the ticket was not fixed.