Re: ignite cache process entry should inject source?

2016-01-22 Thread Denis Magda
Hi Wei Jiang, I would better review your current approach to have better understanding on what you're trying to implement. Please share the code. If it's the same as being discussed in "about AOP development" thread that let me know, I'll take a look there. -- Denis On 1/22/2016 10:28 AM,

Re: supporting collection indexes

2016-01-22 Thread Sergi Vladykin
Yakov, I absolutely agree that the idea of trying to support any bullshit that comes to users mind is wrong and harmful. Indexing of a collection when this collection is a cache value looks useless to me, it is a bad domain model design, we should discourage this. Indexing a map cache values is

[GitHub] ignite pull request: IGNITE-2396 - Fixed service deployment on cac...

2016-01-22 Thread agoncharuk
GitHub user agoncharuk opened a pull request: https://github.com/apache/ignite/pull/416 IGNITE-2396 - Fixed service deployment on cache creation. You can merge this pull request into a Git repository by running: $ git pull https://github.com/agoncharuk/ignite ignite-2396

Re: supporting collection indexes

2016-01-22 Thread Christos Erotocritou
Hey guys, Please bear with me as I am relatively new to Ignite. But here’s my thoughts: I have to agree that we can’t jump in an go build anything that comes to mind but to Sergi’s point about indexing collection objects being pointless I would take for instance the example of a car dealership

[jira] [Created] (IGNITE-2433) Internal cache type inconsistency for IGFS caches

2016-01-22 Thread Semen Boikov (JIRA)
Semen Boikov created IGNITE-2433: Summary: Internal cache type inconsistency for IGFS caches Key: IGNITE-2433 URL: https://issues.apache.org/jira/browse/IGNITE-2433 Project: Ignite Issue

Re: LINQ support in Ignite.NET via re-linq library

2016-01-22 Thread Valentin Kulichenko
Looks nice, but what is ToQueryable() method for? Is the cache initially not queryable? :) -Val On Fri, Jan 22, 2016 at 9:49 AM, Sergi Vladykin wrote: > Looks cool to me. > > Sergi > > 2016-01-22 18:04 GMT+03:00 Pavel Tupitsyn : > > > Igniters,

[GitHub] ignite pull request: IGNITE-2434 - Do not update cache store if en...

2016-01-22 Thread agoncharuk
GitHub user agoncharuk opened a pull request: https://github.com/apache/ignite/pull/418 IGNITE-2434 - Do not update cache store if entry processor was a noop. You can merge this pull request into a Git repository by running: $ git pull https://github.com/agoncharuk/ignite

Re: supporting collection indexes

2016-01-22 Thread Sergi Vladykin
Hey Christos! I've actually agreed with Dmitriy's proposal (which covers the use case you've described but with another SQL syntax). It will not require too much efforts to implement, will not have too complex config, will have clear performance characteristics. This absolutely makes sense. But

[jira] [Created] (IGNITE-2434) Ignite updates cache store even if EntryProcessor did not update cache entry

2016-01-22 Thread Alexey Goncharuk (JIRA)
Alexey Goncharuk created IGNITE-2434: Summary: Ignite updates cache store even if EntryProcessor did not update cache entry Key: IGNITE-2434 URL: https://issues.apache.org/jira/browse/IGNITE-2434

Re: IgniteBinary, POJOs and indexing

2016-01-22 Thread christos
I agree that dynamic indexing at runtime is certainly useful. I don't think persistent storage or supporting removing and updating of indexes added at runtime is necessary - i think its more frequent use case to be able to add than remove or update. -- View this message in context:

[jira] [Created] (IGNITE-2435) Mesos doesn't work with limited access to internet

2016-01-22 Thread Nikolay Tikhonov (JIRA)
Nikolay Tikhonov created IGNITE-2435: Summary: Mesos doesn't work with limited access to internet Key: IGNITE-2435 URL: https://issues.apache.org/jira/browse/IGNITE-2435 Project: Ignite

LINQ support in Ignite.NET via re-linq library

2016-01-22 Thread Pavel Tupitsyn
Igniters, I'm working on LINQ support in Ignite.NET ([1]). For the uninitiated, LINQ will allow cache SQL queries in a strongly-typed way, which is awesome: cache.ToQueryable().Where(person => person.Age > 20) instead of cache.Query(new SqlQuery(typeof(Person), "age > ?", 20)) To greatly

[jira] [Created] (IGNITE-2436) GridCacheWriteBehindStore flushes a single value when the queue size is reached

2016-01-22 Thread Denis Magda (JIRA)
Denis Magda created IGNITE-2436: --- Summary: GridCacheWriteBehindStore flushes a single value when the queue size is reached Key: IGNITE-2436 URL: https://issues.apache.org/jira/browse/IGNITE-2436

[GitHub] ignite pull request: Renamed IgniteRddSpec to IgniteRDDSpec

2016-01-22 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/3 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

Re: Binary ID mapper that uses a simple name of classes.

2016-01-22 Thread Artem Shutak
Dmitriy, I think I got your point. I still have BinaryNameMapper and BinaryIdMapper interfaces, but I have now by one implementation for each mapper with properties as you wrote before. - BinaryBaseNameMapper - an implementation of BinaryNameMapper that has *setSimpleName(boolean isSImpleName)*

[GitHub] ignite pull request: IGNITE-2434 - Do not update cache store if en...

2016-01-22 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/418 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

Re: LINQ support in Ignite.NET via re-linq library

2016-01-22 Thread Sergi Vladykin
Looks cool to me. Sergi 2016-01-22 18:04 GMT+03:00 Pavel Tupitsyn : > Igniters, > > I'm working on LINQ support in Ignite.NET ([1]). > > For the uninitiated, LINQ will allow cache SQL queries in a strongly-typed > way, which is awesome: >

Re: Binary ID mapper that uses a simple name of classes.

2016-01-22 Thread Dmitriy Setrakyan
Why do we need 2 mappers vs 1? What is the difference between them? On Fri, Jan 22, 2016 at 9:46 AM, Artem Shutak wrote: > Dmitriy, > > I think I got your point. I still have BinaryNameMapper and BinaryIdMapper > interfaces, but I have now by one implementation for each

Re: Marking fixed JIRAs against releases

2016-01-22 Thread Dmitriy Setrakyan
I would say 1.5.0.final (the beta did not include all the fixes). On Fri, Jan 22, 2016 at 5:26 PM, Konstantin Boudnik wrote: > Another issue: JIRA has release 1.5, however to my knowledge the project > had > at least > 1.5.0-b1 > 1.5.0.final > > Which one JIRA's version

[jira] [Created] (IGNITE-2437) Zeppelin interperet doesn't import external dependencies

2016-01-22 Thread Konstantin Boudnik (JIRA)
Konstantin Boudnik created IGNITE-2437: -- Summary: Zeppelin interperet doesn't import external dependencies Key: IGNITE-2437 URL: https://issues.apache.org/jira/browse/IGNITE-2437 Project: Ignite

Re: Marking fixed JIRAs against releases

2016-01-22 Thread Konstantin Boudnik
Another issue: JIRA has release 1.5, however to my knowledge the project had at least 1.5.0-b1 1.5.0.final Which one JIRA's version is related to? Cos On Thu, Jan 21, 2016 at 05:33AM, Konstantin Boudnik wrote: > There might be a way to enforce it on the JIRA side, I just have no idea,