Re: getting exception while running the odbc examples

2017-07-13 Thread Rahul.S
no i didn't -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/getting-exception-while-running-the-odbc-examples-tp14755p14861.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

getting exception while running the odbc examples

2017-07-13 Thread Rahul.S
Hi Ignite Team, i was wondering to use the odbc in the ignite so i gave a small try to use the examples in the path "/opt/ignite/apache-ignite-fabric-2.0.0-bin/platforms/cpp/examples/odbc-example", for the above i followed all the notes that were mentioned but it got complied but while running i

Re: Facing Segmentation falt in multi threaded C++ Application with ignite.

2017-07-08 Thread Rahul.S
may i know when is this 2.1 version will be released.. or can i apply the patch for the above bug from committed branch in git hub? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Facing-Segmentation-falt-in-multi-threaded-C-Application-with-ignite-tp1429

Re: Facing Segmentation falt in multi threaded C++ Application with ignite.

2017-07-04 Thread Rahul.S
I am using Apache Ignite 2.0. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Facing-Segmentation-falt-in-multi-threaded-C-Application-with-ignite-tp14297p14316.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Facing Segmentation falt in multi threaded C++ Application with ignite.

2017-07-03 Thread Rahul.S
Hi there, i have simple C++ application that creates threads and assigns a range of key's to each thread, in that range the threads will spontaniously performing Put and Remove operations with the cache. every thing works fine when i have one or two thread in the node (server), when i try to increa

Re: JVM error on upgrade....

2017-06-29 Thread Rahul.S
Thank you for your interest people, it got resolved. the issue was there was no stack memory available for the JVM to run for that we need to pass an extra argument "-Xss2m" to JVM then it will work but still it not clear for why that happened, the only changes that was applied was increase in

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: How to compile C++ code..

2017-06-27 Thread Rahul.S
Here my major considerations is High Data availability across all the nodes that are participating in the cluster and every thing must be in full sync. my idea was to increase the operations so i though of increasing the thread pool which i have increased to 100 but still by using the command "ps

Re: How to compile C++ code..

2017-06-27 Thread Rahul.S
this is the function that performs the insert and delete operations spontaneously and every second it will put a console message about the amount of operations in that second if run as stand alone(10.0.2.55 application node) with only one node up i get about 70,000 operations per second,

Re: How to compile C++ code..

2017-06-27 Thread Rahul.S
Sorry i didn't got "reproducer",... what is it specifically.. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-compile-C-code-tp13989p14111.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: How to compile C++ code..

2017-06-27 Thread Rahul.S
Here i am not using the SQL quires, I am just doing the cache put/get operations.. though its in memory i expect it to be fast then the RDBMS what we are actually using till now. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-compile-C-code-tp13989p14

Re: How to compile C++ code..

2017-06-27 Thread Rahul.S
Ignite 2.0 -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-compile-C-code-tp13989p14103.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: How to compile C++ code..

2017-06-27 Thread Rahul.S
Thank you! It worked... but still had some queries, i am inserting the data of type "double"(including both key and value), i am inserting and deleting the contents spontaneously and at every second i am printing the total number of operations that is taking place. what i can see at that point

How to compile C++ code..

2017-06-20 Thread Rahul.S
Hi Ignite Team, I am intended to compile the c++ code that i have written (its is pretty much copy from the example of put-get with slight modifications..). I went through the "DEVNOTE.txt" in the "$IGNITE_HOME/platforms/cpp/". Completed all the steps as mentioned there (including "make install" as

Re: Facing problem in examples.

2017-06-19 Thread Rahul.S
BINGO! that helped alot, it is working now thank you very much people for such a positive and good support... -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Facing-problem-in-examples-tp13894p13981.html Sent from the Apache Ignite Users mailing list archive

Re: Facing problem in examples.

2017-06-18 Thread Rahul.S
Hi Denis, Here is the configuration that i am using, this configuration is used in both 235 and 26 server, where my C++ application is running in 235. In this case i have made the 26 node up and then i am starting the 235 C++ application node. below after this configurations I have pasted the logs.

Re: Facing problem in examples.

2017-06-18 Thread Rahul.S
Hello Denis, I am using two servers here, in my 253 i have the C++ example application is running and i am running a node in 26. As i start my application it will come up smoothly along with ignite if there is none of the other nodes are up in the network else it will show the previous errors (that

Facing problem in examples.

2017-06-17 Thread Rahul.S
Hi Ignite Team, I am new to the Ignite and its application, I was intended to work with C++ examples, in the put-get example the cache name was not given in the example source code, i gave that part and its up and good to go, the executable is starting and writing the contents in the cache and read