Re: Can ignite kv put data, sql query data in C/S mode?

2021-06-01 Thread tankmarshal
It works. Thank you. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Hiring a GridGain & Ignite Community and Social Media Manager

2021-06-01 Thread Venkat Tamilraj
Dear Igniters, GridGain is looking to hire a community and social media manager to help grow the awareness of Ignite and GridGain. We are especially interested in someone who is familiar with Apache Ignite or similar open source communities. If you are interested, please click here to learn more

Re: Cannot start ignite nodes with shared memory - Ignite version 2.10.0

2021-06-01 Thread sarahsamji
Hi, is there a fix expected for this issue in the next release? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: getOrCreateCache hangs when cacheStore uses spring resources

2021-06-01 Thread Вячеслав Коптилин
Hello, Could you please share log files and a full thread dump from the node? Thanks, S. чт, 27 мая 2021 г. в 14:20, Orange : > Calling ignite.getOrCreateCache(cacheConfig) results in the thread getting > blocked. I've noticed this does not happen when the cacheStore does not use > spring

Re: Can ignite kv put data, sql query data in C/S mode?

2021-06-01 Thread Stephen Darlington
You have the wrong data type in your configuration file. In your XML file it says: It should say: > On 31 May 2021, at 08:54, tankmarshal wrote: > > So, as you say, there is something wrong with the ignite server-config.xml? > > But I review the server-config.xml, compare to Ignite Guide

Re: Execute Ignite Jobs with semaphore

2021-06-01 Thread Thomas Kramer
The idea is that the server, just before it broadcasts the callable tasks to all nodes, creates the semaphore with the desired number of parallel executions. Then the code below makes sure that exactly this number of nodes only run the logic while all other nodes will fail on tryAcquire and

Re: Execute Ignite Jobs with semaphore

2021-06-01 Thread Krish
The below implementation may not work for me because if the semaphore is not available then the task won't do any work. I will have to resubmit the same task to do the work that it is supposed to do. DonTequila wrote > public Object execute() { > IgniteSemaphore semaphore =

Re: Execute Ignite Jobs with semaphore

2021-06-01 Thread Thomas Kramer
Hi Krish, what I do in this case is I do not block on the cluster nodes when trying to acquire the semaphore. So if the semaphore could not be acquired, which will be the case for all nodes except for one, the callable method just immediately returns. So you may call something like this:

Execute Ignite Jobs with semaphore

2021-06-01 Thread Krish
Hi All, I want to make sure that no two compute jobs with the same key (any attribute of Compute job) should be executed in parallel by ignite. I am using semaphore to achieve this. Execute method of my compute job: public Object execute() { IgniteSemaphore semaphore =