Re: how to use bigbench test ignite performance

2018-04-16 Thread aealexsandrov
Hi, As I know Ignite provides its own benchmarks that used Yardstick framework. Documentation: https://apacheignite.readme.io/docs/perfomance-benchmarking yardstick: https://github.com/gridgain/yardstick In Ignite sources exists IgniteAbstractBenchmark class that could be used for creation of

Re: Apache Ignite nightly release builds

2018-04-16 Thread Petr Ivanov
Hi, Igniters! I’m glad to inform that starting today Apache Ignite Nightly Builds provide Nuget and Maven stagings at MyGet [1]. Instructions on connecting to these feeds are here: — Nuget [2] — Maven [3] Enjoy. [1] https://www.myget.org/gallery/apache-ignite-nightly

RE: Efficiently determining if cache keys belong to the local server node

2018-04-16 Thread Stanislav Lukyanov
// Bcc’ing off dev@ignite list for now as it seems to be rather a user-space discussion. Hi, Let me take a step back first. It seems a bit like an XY problem (https://meta.stackexchange.com/questions/66377/what-is-the-xy-problem), so I’d like to clarify the goals before diving into your current

Hibernate 5.2 support

2018-04-16 Thread kestas
I see there is ticket registered for Hibernate 5.2 support: https://issues.apache.org/jira/browse/IGNITE-5848 It is planned for 2.5 release. And release page says https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.5 the 2.5 version should come out on Apr 30, so it is only 2 weeks aw

Re: Hibernate 5.2 support

2018-04-16 Thread Andrey Mashenkov
Hi, As ticket still has no patch, most likely it will be postponed to the next version. On Mon, Apr 16, 2018 at 4:27 PM, kestas wrote: > I see there is ticket registered for Hibernate 5.2 support: > https://issues.apache.org/jira/browse/IGNITE-5848 > It is planned for 2.5 release. And release p

Re: The thread which is inserting data into Ignite is hung

2018-04-16 Thread dkarachentsev
Hi Praveen, Stack traces only show that thread is waiting for response, to get the full picture, please attach full logs and thread dumps at the moment of hang from all nodes. I need from all nodes, because actual issue happened on remote node. Also, according to last exception, there might be c

Re: Query on Ignite web console

2018-04-16 Thread vbm
Hi Denis, Thanks for the information. I have started using web console now. When the user is created as part of web console, a security token is created. The ignite-web-agent is dependent on this security token. Currently the starting of a ignite-web agent looks more of a manual step because of

Re: Ignite query statement reused/cached

2018-04-16 Thread dkarachentsev
Hi, For sure Ignite caches queries, that's why first request runs much longer than rest ones. Thanks! -Dmitry -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

RE: Efficiently determining if cache keys belong to the local server node

2018-04-16 Thread Raymond Wilson
Hi Stan, Your understanding is correct. I'm aware of the AffinityRun and AffinityCall methods, and their simple key limitation. My use case may require 100,000 or more elements of information to be processed, so I don't want to call AffinityRun/Call that often. Each of these elements is identifi

Is Ignite persistency store row store or column store?

2018-04-16 Thread zhouxy1123
hi , is Ignite persistency store row store or column store? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Query on Ignite web console

2018-04-16 Thread Alexey Kuznetsov
Vishwas, There is no such API to get security token of Web Console. What are you tying to implement? Actually there no need in web console and web agent if you just need to execute some SQL. You may use JDBC/ODBC/REST see: https://apacheignite.readme.io/docs/rest-api https://apacheignite-sql.r

Re: Is Ignite persistency store row store or column store?

2018-04-16 Thread Roman Guseinov
Hi, Ignite persistency store is not a column-oriented storage. In simple terms, it stores data like a row-oriented one: K1,V1,K2,V2... To get more details please refer [1], [2]. [1] https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Durable+Memory+-+under+the+hood [2] https://cwiki.apache.