Re: Running gridgain yardstick

2016-05-05 Thread akritibahal91
Hi, It creates the 'libs' folder. And I got imported the above project also that you mentioned, but it's still showing the same result! :( Also, to let you know, I'm using cygwin on a windows platform to run the script, could that be any reason for it to not run? -- View this message in

Re: Running gridgain yardstick

2016-05-01 Thread akritibahal91
I imported the https://github.com/gridgain/yardstick-gridgain project to eclipse, ran mvn package for the pom.xml, and then did bin/benchmark-run-all.sh config/benchmark.properties. And then the above result comes. Could you tell me why this is happening and how to get it to work?? -- View

Re: Running gridgain yardstick

2016-04-28 Thread akritibahal91
Ok got it. So, say, I want to run the IgnitePutGetBenchmark.java to test the Ignite PutGet, so how do I run it?? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Running-gridgain-yardstick-tp4559p4664.html Sent from the Apache Ignite Users mailing list archive at

Re: Running gridgain yardstick

2016-04-27 Thread akritibahal91
Could you explain a bit more? I'm still confused as to what do you mean by different implementations? Is there some example of performance testing that I can look into? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Running-gridgain-yardstick-tp4559p4627.html

Running gridgain yardstick

2016-04-26 Thread akritibahal91
Hi, I wanna how more about the GridGain Yardstick. I tried running it, but since I'm on a windows environment, I could not find the benchmark-run-all.bat script in the bin folder. Could you tell me where I could find it? -- View this message in context:

Re: Maintaining relationships between tables

2016-04-20 Thread akritibahal91
I meant, for example we had to change a deptid for a particular department. Then this is changed in the department table. Now, this deptid should be updated in the employee table as well right, for all those employees who had the previous deptid. -- View this message in context:

Re: Maintaining relationships between tables

2016-04-20 Thread akritibahal91
Yes, could you explain how do I maintain relationships a bit more? I'm not clear on this part. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Maintaining-relationships-between-tables-tp4236p4374.html Sent from the Apache Ignite Users mailing list archive at

Re: UPDATE sql query in ignite

2016-04-15 Thread akritibahal91
I think you did not understand my question. How do I add a new value in my cache (i.e., a new row) which is not already present in the database? Example: Person Cache right now, has: [key=PersonKey [id=2], val=Person [id=2, firstName=Marc, lastName=Robinson, orgid=300, salary=12000]] Entry

Using sql query in ignite

2016-04-15 Thread akritibahal91
Hi, I'm trying to use yoru sql query facility. And I'm doing something like this: String sql = "select orgid from Person where id = ?"; QueryCursor> cursor = cache.query(new SqlFieldsQuery(sql).setArgs(2)); // In this