Behind cache ScanQuery

2016-06-20 Thread zshamrock
Hi, how the ScanQuery is implemented? Does it, as it says, scans all the entries in the cache, so if the there are a lot of entries in the cache this operation could take a while to complete. Correct? And H2 is not used for ScanQuery, as it is not SqlQuery, correct? -- View this message in

Re: SqlQuery and removing/evict items from the cache

2016-06-20 Thread Alexei Scherbakov
Yes. 2016-06-20 15:33 GMT+03:00 zshamrock : > When the items are removed from the cache explicitly or due to the eviction > or expiration policies, does Ignite adjust the number of entries in the > in-memory H2 database, so to keep its size in sync with the actual

Re: Ignite Download links broken

2016-06-20 Thread Sergey Kozlov
Hi It's a known issue: apache site puts links to a nearest site for user (I suppose it based on IP address) and does it incorrect. On Mon, Jun 20, 2016 at 8:37 AM, Dmitriy Setrakyan wrote: > Worked for me just now. Can you try again? > > On Sun, Jun 19, 2016 at 2:59 AM,

Re: Ignite Download links broken

2016-06-20 Thread Pavel Tupitsyn
I have reported this issue 4 months ago, please see details there: https://issues.apache.org/jira/browse/IGNITE-2743 Christos, your link is missing .cgi suffix. Pavel. On Mon, Jun 20, 2016 at 3:53 PM, Vladisav Jelisavcic wrote: > Not working for me also, > but only 1.6.0

Re: Ignite Download links broken

2016-06-20 Thread Pavel Tupitsyn
Thanks Anton, works for me now. On Mon, Jun 20, 2016 at 4:29 PM, Anton Vinogradov wrote: > Download urls changed to https://archive.apache.org/dist/ignite/* > > > On Mon, Jun 20, 2016 at 4:14 PM, Dmitriy Setrakyan > wrote: > >> I think we should

Re: Behind cache ScanQuery

2016-06-20 Thread Alexei Scherbakov
It does full scan without using indexes. 2016-06-20 15:31 GMT+03:00 zshamrock : > Hi, how the ScanQuery is implemented? Does it, as it says, scans all the > entries in the cache, so if the there are a lot of entries in the cache > this > operation could take a while

Re: Ignite Download links broken

2016-06-20 Thread Dmitriy Setrakyan
Is it possible to provide hard-coded links (without mirror) in the mean time, while we are resolving this issue? Pavel, I think this issue should be reported to INFRA, not Ignite. I doubt Ignite community can do anything to fix it. D. On Mon, Jun 20, 2016 at 6:04 AM, Pavel Tupitsyn

Re: Ignite Download links broken

2016-06-20 Thread Vladisav Jelisavcic
Not working for me also, but only 1.6.0 (latest) and 1.5.0.final, the rest is working fine. On Mon, Jun 20, 2016 at 8:02 AM, Sergey Kozlov wrote: > Hi > > It's a known issue: apache site puts links to a nearest site for user (I > suppose it based on IP address) and does it

Re: How deploy Ignite workers in a Spark cluster

2016-06-20 Thread Alexei Scherbakov
Hi, Have you tried to provide Spark master URL in the SparkConf instance ? I'm not very big expert on Spark, so you better follow Spark docs for troubleshooting Spark configuration problems. 2016-06-15 23:12 GMT+03:00 Paolo Di Tommaso : > Hi, > > I'm using a local

SqlQuery and removing/evict items from the cache

2016-06-20 Thread zshamrock
When the items are removed from the cache explicitly or due to the eviction or expiration policies, does Ignite adjust the number of entries in the in-memory H2 database, so to keep its size in sync with the actual items in the cache? -- View this message in context:

Re: Ignite Download links broken

2016-06-20 Thread Anton Vinogradov
Download urls changed to https://archive.apache.org/dist/ignite/* On Mon, Jun 20, 2016 at 4:14 PM, Dmitriy Setrakyan wrote: > I think we should do it, at least for now, until the mirror issue is > resolved. We should also file an INFRA issue in parallel. Anton, do you >

Re: Why ignite-indexing doesn't use/work the latest H2 version

2016-06-20 Thread Alexey Kuznetsov
Hi zshamrock. As far as I know H2 1.4 has beta status (although it is pretty stable) and also we could not simply switch to H2 1.4.x this will require some internal code changes. I think Sergi, who is a main developer of Ignite SQL, could provide more information about this. On Tue, Jun 21,

Why ignite-indexing doesn't use/work the latest H2 version

2016-06-20 Thread zshamrock
I found that if I use the latest H2 version 1.4.192, Ignite fails on startup with the following error: java.lang.NoClassDefFoundError: org/h2/constant/SysProperties at org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing.start(IgniteH2Indexing.java:1487) at

Re: How do i expose a cluster singleton service through REST

2016-06-20 Thread josephine.barboza
Hi Denis, Thanks for the quick reply. The UI cannot be on the client node. We want it to be separate project from our ignite cluster. How do i expose my node singleton services then? -- View this message in context:

Re: How to call loadCache before node is started ?

2016-06-20 Thread Alexei Scherbakov
Hi, You should not rely on cache.size method for checking data consistency. cache.size skips keys which is not currently loaded by read-through behavior. 2016-06-18 15:14 GMT+03:00 Kristian Rosenvold : > 2016-06-18 13:02 GMT+02:00 Alexei Scherbakov