Ignite File System API with Scala

2017-06-28 Thread ishan-jain
Hello Can someone provide documentation for ignite File System API in scala? Thanks in advance. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Ignite-File-System-API-with-Scala-tp14153.html Sent from the Apache Ignite Users mailing list archive at

Ignite Data Streamer Performance is not improving with increase in threads

2017-06-28 Thread rishi007bansod
Hi, With datastreamer threads = 16(default) am able to get upto 80 K msgs/sec throughput. As I have 56 core machine(with hyperthreading), I have tried increasing this pernodeparallelprocessing parameter of datastreamer to 56. But still no increase in throughput is observed. Also out of 5600%

Re: Putting a multi-level object into Ignite cache hangs on put()

2017-06-28 Thread ezhuravlev
Hi, I've tried to put same values to local ignite node without client and spring, it works without any problems. Could you share logs from both server and client node? Evgenii -- View this message in context:

Re: Scanquery and Peer classloading

2017-06-28 Thread Helge Waastad
Ah, knew it had to be smthg I missed. Thanks for the explaination and example. /hw ti., 27.06.2017 kl. 06.42 -0700, skrev afedotov: > Hi Helge,  > > The problem is that the filter passed to the ScanQuery is executed on > the server nodes as is and since these nodes > have DynaFormModel class

Re: Putting a multi-level object into Ignite cache hangs on put()

2017-06-28 Thread mdolgonos
Evgenii, Did you try my exact code? I would appreciate if you try it using Spring to see if you have the same results. thank you -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Putting-a-multi-level-object-into-Ignite-cache-hangs-on-put-tp14086p14132.html Sent

Re: Ignite spring transactions integration works?

2017-06-28 Thread ezhuravlev
Hi, Have you enabled spring transaction support, as it described here? https://ignite.apache.org/releases/2.0.0/javadoc/org/apache/ignite/transactions/spring/SpringTransactionManager.html Evgenii -- View this message in context:

Re: Failed to register query type: QueryTypeDescriptorImpl

2017-06-28 Thread ezhuravlev
Hi, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send empty email to user-subscr...@ignite.apache.org and follow simple instructions in the reply. I tried your code, but it's works without problems for me.

Re: Putting a multi-level object into Ignite cache hangs on put()

2017-06-28 Thread ezhuravlev
Ok, then send full reproducer as a maven project, I will try it with spring. I don't have AppConfig.class. Evgenii -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Putting-a-multi-level-object-into-Ignite-cache-hangs-on-put-tp14086p14134.html Sent from the

Re: How to compile C++ code..

2017-06-28 Thread Igor Sapego
Can you start a new thread, where you mention performance issues in the caption? No one except for me never is going to read mails with caption asking "How to compile C++ code" :) Best Regards, Igor On Wed, Jun 28, 2017 at 6:35 AM, Rahul.S wrote: > Here my major

JVM error on upgrade....

2017-06-28 Thread Rahul.S
Hi Ignite Team, i was using a Cent OS with 2GB of RAM earllier but it was not sufficient for me to test my code, so got upgraded to 6GB of RAM. The instant i upgraded i am facing this issue can any one help me: ** # # A fatal error has been detected by the Java

Re: Ignite SQL Queries on Lists fields sorting

2017-06-28 Thread Andrey Mashenkov
Hi, To allow fields to be used in queries you should mark them wither with @QuerySqlField annotation or configure QueryEntity in cache configuration. Sorting by collections is not supported. On Wed, Jun 28, 2017 at 12:06 PM, begineer wrote: > hey Guys, > I have a question

Re: JVM error on upgrade....

2017-06-28 Thread Denis Magda
Please provide the logs of all the Ignite nodes you have and the configuration you use. — Denis > On Jun 28, 2017, at 6:36 AM, Rahul.S wrote: > > Hi Ignite Team, > i was using a Cent OS with 2GB of RAM earllier but it was not sufficient for > me to test my code, so got

Re: ignite compute debugging

2017-06-28 Thread ezhuravlev
Hi, In this message after some information also printed a full stacktrace for this exception. Just check your log closely. If you don't have this stacktrace, please, share full logs with us. Evgenii -- View this message in context:

Re: Camel-Ignite cache query : Could not find a suitable setter for property: query

2017-06-28 Thread ezhuravlev
Hi, You're trying to put in option "query", which have a type Query, a value, which have a type String. Do you have a registry bean #query1? This documentation has a descriptions for parameters: http://camel.apache.org/ignite.html Evgenii -- View this message in context:

IGNITE-4548 does not seem to be completely fixed

2017-06-28 Thread Gordon Reid (Nine Mile)
Hi Ignite Experts, I have tested the fix for IGNITE-4548 Say I have enum like this public enum SecurityType { All, Stock, Future, Option, Commodity, ETF, Bond, Unknown, Equity, REIT, StapledSecurity, CurrencyPair } Using this JDBC config

Camel-Ignite cache query : Could not find a suitable setter for property: query

2017-06-28 Thread austin solomon
Hi, I am trying to read Apache-Ignite's cache data using camel-Ignite cache component like given below. public void configure() throws Exception { from("ignite:cache:person?query=#query1") .process(new MyProcessor()) .to("file:/tmp/outbox");

Ignite SQL Queries on Lists fields sorting

2017-06-28 Thread begineer
hey Guys, I have a question about Ignite Sql Queries. Let say my cache looks like below sample code. If I add orderBy clause on subjectMarksList, how will it sort it. Compare values in list by index or how. I coudn't find anything in docs. Cache class Student{ int id; String