Re: Ignite.close method blocked indefinitely

2018-12-24 Thread Павлухин Иван
Hi userx, How do you start you client? You use a term IgniteClient, but it looks like that you are using Ignite instance running in client mode. By IgniteClient so-called "thin client" is assumed (java interface for thin client has name "IgniteClient"). >From the thread dump I can see that

Re: ignite stops expiring caches after a period of time

2018-12-24 Thread Scott Feldstein
Thanks Ilya, I’ll upgrade and see if that works soon. Right now we’ve switched to only using partitioned caches to avoid this issue. If it’s something that isn’t fixed with 2.7 then I’ll create a bug and attach code to reproduce it. I’m really surprised that no one else is complaining about it.

Re: Is ignite good for my use case?

2018-12-24 Thread Denis Magda
Yes, you can replace an RDBMS of Ignite if Ignite APIs are sufficient - usually, they are. -- Denis On Sun, Dec 16, 2018 at 1:01 PM Darshan Singh wrote: > Thanks a lot for this, > > If I will use the ignite persistence can we sort of get rid of our > rdbms'es as we load data into these every

Re: Dealing with changing class definitions in Ignite

2018-12-24 Thread Denis Magda
Gert, All, That's not a peer-class-loading issue but rather the binary objects limitation. It's impossible to change the *type* of an object field. You can add new fields or remove existing ones. The same limitation applies to SQL - now way to change the type in runtime. That latter should be

Request to Unsubscribe from mailing list

2018-12-24 Thread Hareesh Shastry
Request to Unsubscribe from mailing list -- Thanks, Hareesh +919845285339

Re: Cache updates slow on Linux Vs Windows

2018-12-24 Thread rj85
Hi Ilya, Thanks for your response. I am attaching a session log from yesterday. Please look into this and advise. Notice that the call comes in at 8:56:59.952. The app makes the update call at 8:37:00.021 After that there is a lot of Ignite chatter for about 12 sec.. The app starts logging

Re: CAP Theorem (CP? or AP?)

2018-12-24 Thread joseheitor
Guys, thank you both for your informative and helpful responses. I have explicitly configured the cache-template with the additional property: And have observed the following behaviour: 1. [OK] Attempting to get a specific record(s) which resides in a lost partition does indeed return an

Ignite.close method blocked indefinitely

2018-12-24 Thread userx
Hi, I am trying to write some data to IgniteCache (PersistentMode) from a Igniteclient to an IgniteServer. My IgniteClient is a simple java program which is serving some requests. As a matter of fact, the IgniteClient is instantiated lazily from a java program ( a server serving requests),

Re: Updating Apache Ignite WebSession attributes

2018-12-24 Thread Ilya Kasnacheev
Hello! Do you have a reproducer for this behavior? What do you mean by "different server" here? Is there node loss? Do you have backups configured? Regards, -- Ilya Kasnacheev пн, 24 дек. 2018 г. в 15:57, Rout, Biswajeet : > Hi, > > We are currently integrating Apache Ignite in our

Re: Use property/YAML files in services

2018-12-24 Thread Ilya Kasnacheev
Hello! It is quite possible to configure services in the same Spring XML file as the Ignite configuration. Consider: ... -- Ilya Kasnacheev пн, 24 дек. 2018 г. в 15:50, ashishb008 :

Re: Is it safe to decrease the data region size for a live cluster

2018-12-24 Thread aealexsandrov
Hi, Yes, it's safe in case if rest (256-132) GB of RAM is enough for your system working and other applications. You have persistence, so your data will not be missed. Data region size sets for every node and can be changed during node restart. However, you should take an account to the next

Updating Apache Ignite WebSession attributes

2018-12-24 Thread Rout, Biswajeet
Hi, We are currently integrating Apache Ignite in our application to share sessions in a cluster. At this point, we can successfully share sessions between two servers, but there's one use case, which (seems) is not taken care by Ignite. In our application, we have a session object which is

Use property/YAML files in services

2018-12-24 Thread ashishb008
As of now, what is the best way to use configuration files in Ignite services (Node singleton)? Consider a cluster of 3 nodes and each will have its own config file, where to put config files? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Is it safe to decrease the data region size for a live cluster

2018-12-24 Thread kcheng.mvp
There are 3 nodes in our cluster with persistent enabled. each node has 256G memory And there are already some data in the cluster. here is my data region configuration. dataRegion: RP.initialSize: 50L * 1024 * 1024 * 1024 RP.maxSize: 80L * 1024 * 1024 * 1024

Re: Ignite .NET in docker (linux)?

2018-12-24 Thread Ilya Kasnacheev
Hello! If you plan on using Ignite features which use remote code execution, you need to make sure that: - You start your server nodes as .Net nodes (apacheignite/ignite is almost certainly a Java node container) - You need to either deploy your code on server nodes, or enable

Re: Cache updates slow on Linux Vs Windows

2018-12-24 Thread Ilya Kasnacheev
Hello! Can you please provide logs from affected nodes? It's hard to say anything specific otherwise. Regards, -- Ilya Kasnacheev вс, 23 дек. 2018 г. в 03:03, rj85 : > Hi, > > I am working on a Spring Boot application. Apache ignite is used as the > Caching mechanism. Apache Ignite is

Re: deep learning over apache ignite

2018-12-24 Thread Mehdi Seydali
as you said we can use hierarchical spawning job in spark. there is remained another issue. for example if we have load data from ignite cache and a job on spark has been spawned. this job spawn some other jobs. this jobs can be execute on ignite too? if this job fail how about the other job

Re: Full GC in client after cluster become unstable with "Unable to await partitions release latch within timeout"

2018-12-24 Thread Pavel Kovalenko
Hello, Could you please attach additional logs from a coordinator node? An id of that node you may notice in "Unable to await partitions release latch" message. Also, it would be good to have logs from the client machine and from any other server node in the cluster. пн, 24 дек. 2018 г. в 09:13,

Re: Do we require to set MaxDirectMemorySize JVM parameter?

2018-12-24 Thread stanlukyanov
We’re actually looking into off-heap memory usage of ignite now, specifically into the MaxDirectMemorySize needed. So far it seems that MaxDirectMemorySize=256m should work. It may need to be larger if you use non-default walSegmentSize. Not limiting the direct memory size may result in

Re: Strange issue while call ddl

2018-12-24 Thread yangjiajun
Hello.Sorry for so late to reply to you. I think I reproduce this issue.Here are my reproduce steps: 1.start a version 2.6 node with persistence enabled. 2.create 2 tables with "template=replicated". 3.Insert data to 2 tables. 4.Open a connection to make a long time query targeting on first

Re: CAP Theorem (CP? or AP?)

2018-12-24 Thread Павлухин Иван
Hi Jose, First of you refer to a slide about Data Center Replication, an commercial feature of GridGain. Ignite does not provide such feature. Also, SQL and Cache API could behave different. You can check how Cache API shows itself in your experiments. CacheAtomicityMode and PartitionLossPolicy

Re: CAP Theorem (CP? or AP?)

2018-12-24 Thread stanlukyanov
When the cluster loses all copies of a partition the behavior is defined by PartitionLossPolicy. The current default is IGNORE which is indeed an AP rather than CP option. You can set it to READ_WRITE_SAFE or READ_ONLY_SAFE to get the CP behavior. I would also strongly advise to do so if you

Re: Do we require to set MaxDirectMemorySize JVM parameter?

2018-12-24 Thread Павлухин Иван
Hi summasumma, > Means, i should have minimum 16 Gb of RAM (8 dataregion+ 8 directmem) for > Ignite to run properly i guess. Not quite. Actually, I am not aware that Ignite requires some special tuning of MaxDirectMemorySize. If direct memory causes OOME then the exception message usually points