Re: Any plan for a book on Apache Ignite

2017-01-06 Thread srecon
Denis, thank's a lot. Regards Shamim -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Any-plan-for-a-book-on-Apache-Ignite-tp357p9953.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: NOT IN in ignite

2017-01-06 Thread Anil
Hi Val, Thanks for clarification. i have attached the sample program which reproduces the issue. Please let me know if you are unable to reproduce. thanks. On 7 January 2017 at 03:48, vkulichenko wrote: > Anil, > > I mean total count. This happens automatically. > > -Val > > > > -- > View thi

Re: Size of an Object

2017-01-06 Thread vkulichenko
You can serialize the object and check the length of the byte array: byte[] arr = ignite.configuration().getMarshaller().marshal(new Person(10L, "first", "last")); System.out.println(arr.length); Then refer to this page to calculate the total cache capacit: https://apacheignite.readme.io/docs/cap

Re: NOT IN in ignite

2017-01-06 Thread vkulichenko
Anil, I mean total count. This happens automatically. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/NOT-IN-in-ignite-tp9861p9950.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Old AWS SDK version, why?

2017-01-06 Thread Denis Magda
Presently the community plans to release 2.0 in Feb. If it’s shifted there is a chance that 1.9 will be released instead and earlier. However, someone still needs to take care about this ticket. — Denis > On Jan 6, 2017, at 1:36 PM, zshamrock wrote: > > Hi, Denis. > Thank you for creating the

Re: Old AWS SDK version, why?

2017-01-06 Thread zshamrock
Also specifically for the Instance Profile credentials provider I guess, on every getCredentials request, if the credentials are about to expire it calls instance medata http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html#instance-metadata-security-credentials, i.e.

Re: Old AWS SDK version, why?

2017-01-06 Thread zshamrock
Hi, Denis. Thank you for creating the issue. I will keep an eye on it. If nobody picks it up, and I find free time, then I will pick up it myself. When do you plan to release 1.9.0 version (is there a roadmap)? (as I've not seen you've been releasing minor versions like 1.8.1 including some of the

Re: Spring Boot Ignite Application - Autowire Services in IgniteCallable

2017-01-06 Thread hitendrapratap
I am doing the same. I was curious if we can @Autowire. Thanks -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Spring-Boot-Ignite-Application-Autowire-Services-in-IgniteCallable-tp9916p9946.html Sent from the Apache Ignite Users mailing list archive at Nabble.com

Size of an Object

2017-01-06 Thread hitendrapratap
I am caching a big object ON HEAP and want to the get the exact space its occupying in the cache. So that we can get an idea how many entries we can cache. Is there any metrics which can achieved the same? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Size-of-a

Re: NOT IN in ignite

2017-01-06 Thread Anil
Hi Val, "The aggregation should happen on the client" is not clear to me. you mean jdbc result contains the count of results of each node ? or total count ?. Thanks, Anil On 6 January 2017 at 23:49, vkulichenko wrote: > Hi, > > The aggregation should happen on the client and you should get the

Re: Affinity

2017-01-06 Thread vkulichenko
Hi Tejas, Did you check the execution plan? Are there any scans? -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Affinity-tp9744p9943.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Any plan for a book on Apache Ignite

2017-01-06 Thread Denis Magda
Shamim, Awesome! Twitted about this from Apache Ignite account https://twitter.com/ApacheIgnite — Denis > On Jan 5, 2017, at 11:50 PM, srecon wrote: > > Hi, > This book is 100% complete and available at https://leanpub.com/ignite >

Re: Affinity

2017-01-06 Thread Tejashwa Kumar Verma
Hi, I have two following cache both are loaded in memory (4 node cluster)and connected through affinity key. 1). Cache1 has 20 million records 2). Cache2 has 20 million records too. Now trying to fetch record through join query. But the execution time of query is ~160 sec. This is too high than

Re: NOT IN in ignite

2017-01-06 Thread vkulichenko
Hi, The aggregation should happen on the client and you should get the correct result. Are nodes discovering each other? Can you prepare a test case that reproduces the issue? -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/NOT-IN-in-ignite-tp9861p9940.htm

Re: Old AWS SDK version, why?

2017-01-06 Thread Denis Magda
Thanks for troubleshooting this. I’m absolutely fine to add a method that will accept AWSCredentialsProvider. Do you want to handle this and improve the IP finder implementation? We can grant you all the needed permissions in JIRA. https://issues.apache.org/jira/browse/IGNITE-4530

Re: Performance with increase in node

2017-01-06 Thread Denis Magda
I want to highlight here that the performance degrades with 2 or 3 servers node configuration simply because all the nodes are running locally on a single machine. The nodes have to fight for system resources. If to run the same benchmark having nodes on different physical machine the numbers w

Re: Java Service Deployment

2017-01-06 Thread mark_balmer
Ok, i've managed to get the service deployed to the cluster now, and I can call the method on it. However, the code that calls the service seems slow to get the response. See below output and the timestamps: [15:14:05] Security status [authentication=off, tls/ssl=off] [15:14:16] New version is ava

Re: Java Service Deployment

2017-01-06 Thread Nikolai Tikhonov
In your case you just need enable peer class loading. For java configuration to use IgniteConfiguration#setPeerClassLoadingEnabled or for xml: ... If after it you will get the exception, please share it here and attach your ignite configuration. On Fri, Jan 6, 2017 at 5:28 PM, ma

Re: Java Service Deployment

2017-01-06 Thread mark_balmer
So i'm trying to follow the service example at http://apacheignite.gridgain.org/docs/service-example which is a MyCounterServiceImpl service, not the NodeFilter one. Under the section Service Deployment, it shows some code for deploying it: // Cluster group which includes all caching nodes. Clust

Re: Java Service Deployment

2017-01-06 Thread Nikolai Tikhonov
Hi! You should copy jar with node filter to libs folder. It will be enough. On Fri, Jan 6, 2017 at 4:52 PM, mark_balmer < mark.bal...@moodinternational.com> wrote: > I'm having problems getting an example Java service to be deployed on my > Ignite cluster as part of a product evaluation. I've fo

Java Service Deployment

2017-01-06 Thread mark_balmer
I'm having problems getting an example Java service to be deployed on my Ignite cluster as part of a product evaluation. I've followed the example as specified on the url http://apacheignite.gridgain.org/docs/service-example , however I've also noticed that on the main service information page it s

Re: Old AWS SDK version, why?

2017-01-06 Thread zshamrock
Ok, Denis. I found the issue. Could you, please, create the corresponding JIRA issue for Apache Ignite project (it looks I don't have enough rights to do it myself). The issue is the following (at least for Apache Ignite 1.7.0, but I guess 1.8.0 will not be any different): - when you deploy Ignit

Re: Trigger query in ignite

2017-01-06 Thread dkarachentsev
Hi, You may use IgniteScheduler [1,2]: [1] https://www.gridgain.com/sdk/1.8.1/javadoc/org/apache/ignite/IgniteScheduler.html [2] http://apacheignite.gridgain.org/docs/cron-based-scheduling -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Trigger-query-in-ignite-

Trigger query in ignite

2017-01-06 Thread rishi007bansod
Is there any way we can trigger query at some fixed time interval in ignite(So that query is written only single time initially and it gets called at defined time interval). Is there any event parameter where we can set this time interval between query? -- View this message in context: http://a

Re: Put Vs Datastreamer

2017-01-06 Thread Gaurav Bajaj
Hi Val, Yes, you are right, it's on local single node. Sorry I should have been more thorough in describing my environment. I will test it on multi-node environment and check the performance. Thanks, Gaurav On Thu, Jan 5, 2017 at 10:24 PM, vkulichenko wrote: > Hi Gaurav, > > How many nodes do

Re: Performance with increase in node

2017-01-06 Thread Nikolai Tikhonov
Hi, > 1. Can some one try my test program in order to see what is the problem here? First, you don't have problem here. :) Second, your benchmark is incorrect. Read the thread on SO for additional information how correct to write benchmark: http://stackoverflow.com/questions/504103/how-do-i-write

Re: Exception while resolving topology version.

2017-01-06 Thread dkarachentsev
Hi Tolga, Please attach full logs from client and server, and your Ignite configurations. Do you constantly create/destroy caches during runtime? -Dmitry -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Exception-while-resolving-topology-version-tp9926p9927.html

Exception while resolving topology version.

2017-01-06 Thread Tolga Kavukcu
Hi Everyone, I have a cluster envoriment with 1 server and 1 client. Periodically i get this exception, once error occured its getting same exception, than i have to restart client. But in the server and clients System logs, i see that both client's and server is in the cluster up, despite this e