[jira] [Created] (IGNITE-2942) Use getOrStart in IgniteContext instead of current try-catch structure

2016-04-01 Thread Alexey Goncharuk (JIRA)
Alexey Goncharuk created IGNITE-2942: Summary: Use getOrStart in IgniteContext instead of current try-catch structure Key: IGNITE-2942 URL: https://issues.apache.org/jira/browse/IGNITE-2942 Projec

[jira] [Created] (IGNITE-2941) Add getOrStart method to ignition

2016-04-01 Thread Alexey Goncharuk (JIRA)
Alexey Goncharuk created IGNITE-2941: Summary: Add getOrStart method to ignition Key: IGNITE-2941 URL: https://issues.apache.org/jira/browse/IGNITE-2941 Project: Ignite Issue Type: Bug

Re: CacheStoreBalancingWrapper is not serializable

2016-04-01 Thread Alexey Goncharuk
Any reason you want to make it serializable? This is an internal class and it is never transmitted over the network to a remote node. As Yakov pointed out, cache store factory is what being transmitted to remote nodes with the configuration.​

Re: Nightly builds from master

2016-04-01 Thread Pavel Tupitsyn
Cool, did not know that we have this. Unfortunately, this nightly build does not include .NET binaries. Examples are included, but they won't compile without the binaries. Is it possible to fix this? Are there Windows machines on Jenkins? On Fri, Apr 1, 2016 at 6:40 PM, Dmitriy Setrakyan wrote:

Re: Nightly builds from master

2016-04-01 Thread Dmitriy Setrakyan
Is this what you are looking for? https://builds.apache.org/view/H-L/view/Ignite/job/Ignite-nightly/lastSuccessfulBuild/ D. On Fri, Apr 1, 2016 at 8:18 AM, Alexey Kuznetsov wrote: > Hi! > > I think we already need this feature. > > How we could support this? > > Should we ask INFRA? > Or this

Re: Deprecate GridFunc

2016-04-01 Thread Sergi Vladykin
+1 I think it is a good idea to mark GridFunc and F with @Depricated annotation and encourage developers to refactor the code which uses them when they come across it. This way we'll gradually get rid of this "true functional programming" stuff. Sergi 2016-04-01 12:46 GMT+03:00 Vladimir Ozerov :

Nightly builds from master

2016-04-01 Thread Alexey Kuznetsov
Hi! I think we already need this feature. How we could support this? Should we ask INFRA? Or this could be done using ci.ignite.apache.org? Thoughts? -- Alexey Kuznetsov GridGain Systems www.gridgain.com

[jira] [Created] (IGNITE-2940) .NET: Plugin system

2016-04-01 Thread Pavel Tupitsyn (JIRA)
Pavel Tupitsyn created IGNITE-2940: -- Summary: .NET: Plugin system Key: IGNITE-2940 URL: https://issues.apache.org/jira/browse/IGNITE-2940 Project: Ignite Issue Type: New Feature Co

Re: hive not working with ignite igfs

2016-04-01 Thread Vladimir Ozerov
Pawan, I think it makes sense to try reverting "fs.defaultFS" property back to original value: fs.defaultFS hdfs://192.168.1.5:9000 Hadoop ecosystem is know to be pretty sensitive to the value of this property and often cannot work when the value is somehing ither than HDFS URI. Once

[GitHub] ignite pull request: IGNITE-2939 .NET: Review default Xms/Xmx sett...

2016-04-01 Thread ptupitsyn
GitHub user ptupitsyn opened a pull request: https://github.com/apache/ignite/pull/598 IGNITE-2939 .NET: Review default Xms/Xmx settings You can merge this pull request into a Git repository by running: $ git pull https://github.com/ptupitsyn/ignite ignite-2939 Alternatively

[GitHub] ignite pull request: Ignite-2822 Continuous query local listener c...

2016-04-01 Thread dmagda
GitHub user dmagda opened a pull request: https://github.com/apache/ignite/pull/597 Ignite-2822 Continuous query local listener can be notified with empty list of events You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/a

[jira] [Created] (IGNITE-2939) .NET: Review default Xms/Xmx settings

2016-04-01 Thread Pavel Tupitsyn (JIRA)
Pavel Tupitsyn created IGNITE-2939: -- Summary: .NET: Review default Xms/Xmx settings Key: IGNITE-2939 URL: https://issues.apache.org/jira/browse/IGNITE-2939 Project: Ignite Issue Type: Improv

[jira] [Created] (IGNITE-2938) IgfsBackupsDualAsyncSelfTest.testAppendParentMissing and IgfsBackupsDualAsyncSelfTest.testAppendParentMissingPartially fail sometimes on master

2016-04-01 Thread Ivan Veselovsky (JIRA)
Ivan Veselovsky created IGNITE-2938: --- Summary: IgfsBackupsDualAsyncSelfTest.testAppendParentMissing and IgfsBackupsDualAsyncSelfTest.testAppendParentMissingPartially fail sometimes on master Key: IGNITE-2938 UR

Re: hive not working with ignite igfs

2016-04-01 Thread Vladimir Ozerov
Hi, I do not see any apparent errors in configs. Could you please provide logs from Ignite server? Vladimir. On Fri, Apr 1, 2016 at 10:03 AM, Pawan Pawar wrote: > Thanks for your reply I am sending my all conf files, please check > attachment, I am using igfs://igfs@192.168.1.5:10500 > > On Fr

[GitHub] ignite pull request: IGNITE-2937 .NET: Fix NuGet LINQPad sample

2016-04-01 Thread ptupitsyn
GitHub user ptupitsyn opened a pull request: https://github.com/apache/ignite/pull/596 IGNITE-2937 .NET: Fix NuGet LINQPad sample You can merge this pull request into a Git repository by running: $ git pull https://github.com/ptupitsyn/ignite ignite-2397 Alternatively you can

[jira] [Created] (IGNITE-2937) .NET: NuGet LINQPad sample does not work in x86 mode

2016-04-01 Thread Pavel Tupitsyn (JIRA)
Pavel Tupitsyn created IGNITE-2937: -- Summary: .NET: NuGet LINQPad sample does not work in x86 mode Key: IGNITE-2937 URL: https://issues.apache.org/jira/browse/IGNITE-2937 Project: Ignite Iss

[GitHub] ignite pull request: IGNITE-2908 .NET: Add IgniteConfiguration pro...

2016-04-01 Thread ptupitsyn
GitHub user ptupitsyn opened a pull request: https://github.com/apache/ignite/pull/595 IGNITE-2908 .NET: Add IgniteConfiguration properties: IsDaemon, AtomicConfiguration, TransactionConfiguration, UserAttributes You can merge this pull request into a Git repository by running:

Re: CacheStoreBalancingWrapper is not serializable

2016-04-01 Thread Yakov Zhdanov
Store may be non-serializable, but factory should be. Singleton factories serialized along with their instances in my understanding suitable only for tests or pre-configured caches. --Yakov 2016-04-01 10:34 GMT+03:00 endianignite : > Should I make CacheStoreBalancingWrapper serializable, or is t

Re: Deprecate GridFunc

2016-04-01 Thread Vladimir Ozerov
Yakov, This is very hard to reason whether it is affect performance or no. There are lots of "views" on critical paths (cache, IO, discovery, affinity), and their semantics is virtually unpredictable. Not to say about additional GC pressure. Anyway, looks like we have consensus that this class sh

Re: Default for backups in AtomicConfiguration

2016-04-01 Thread Yakov Zhdanov
Fine for me. Vladimir, can you please change it in master? --Yakov 2016-03-31 19:52 GMT+03:00 Dmitriy Setrakyan : > The message looks a little incomplete to me. How about: > > “Failed to find an atomic structure with given name (increase > AtomicConfiguration.backups if it was lost due to a fail

Re: Deprecate GridFunc

2016-04-01 Thread Yakov Zhdanov
+1, However, personally I try not to accept new code on reviews relying on F. I don't think we have any usages of mentioned methods on critical paths that may affect performance. So, for now I would ask reviewers to very carefully accept new code using F. --Yakov 2016-04-01 10:41 GMT+03:00 endia

[jira] [Created] (IGNITE-2936) On loading from oracle store incorrect type is returned

2016-04-01 Thread Vasiliy Sisko (JIRA)
Vasiliy Sisko created IGNITE-2936: - Summary: On loading from oracle store incorrect type is returned Key: IGNITE-2936 URL: https://issues.apache.org/jira/browse/IGNITE-2936 Project: Ignite Is

[jira] [Created] (IGNITE-2935) GridFunc: Identify safe methods and move them to a new class.

2016-04-01 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-2935: --- Summary: GridFunc: Identify safe methods and move them to a new class. Key: IGNITE-2935 URL: https://issues.apache.org/jira/browse/IGNITE-2935 Project: Ignite

[jira] [Created] (IGNITE-2934) GridFunc: Simple deprecations.

2016-04-01 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-2934: --- Summary: GridFunc: Simple deprecations. Key: IGNITE-2934 URL: https://issues.apache.org/jira/browse/IGNITE-2934 Project: Ignite Issue Type: Sub-task

[jira] [Created] (IGNITE-2933) Deprecate GridFunc class.

2016-04-01 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-2933: --- Summary: Deprecate GridFunc class. Key: IGNITE-2933 URL: https://issues.apache.org/jira/browse/IGNITE-2933 Project: Ignite Issue Type: Task C

[jira] [Created] (IGNITE-2932) IgniteFutureTimeoutException during the run of load test (cache-tx-invoke)

2016-04-01 Thread Ilya Suntsov (JIRA)
Ilya Suntsov created IGNITE-2932: Summary: IgniteFutureTimeoutException during the run of load test (cache-tx-invoke) Key: IGNITE-2932 URL: https://issues.apache.org/jira/browse/IGNITE-2932 Project: I

[jira] [Created] (IGNITE-2931) Simplify filter passing logic in GridCacheAdapter and dependent classes.

2016-04-01 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-2931: --- Summary: Simplify filter passing logic in GridCacheAdapter and dependent classes. Key: IGNITE-2931 URL: https://issues.apache.org/jira/browse/IGNITE-2931 Projec

Re: Deprecate GridFunc

2016-04-01 Thread endianignite
Wow, that really is an infamous class. Yikes. +1 from me for deprecate & refactor. -- View this message in context: http://apache-ignite-developers.2346864.n4.nabble.com/Deprecate-GridFunc-tp8214p8217.html Sent from the Apache Ignite Developers mailing list archive at Nabble.com.

Re: Deprecate GridFunc

2016-04-01 Thread Semyon Boikov
+1 Also need to check these classes with lots of static utility methods: IgniteUtils and X. On Fri, Apr 1, 2016 at 11:03 AM, Vladimir Ozerov wrote: > Igniters, > > This is about our infamous *GridFunc *class. I suggest to deprecate it and > strongly discourage any usage of any method from it. >

CacheStoreBalancingWrapper is not serializable

2016-04-01 Thread endianignite
Should I make CacheStoreBalancingWrapper serializable, or is there a reason not to? If no objections I will raise a JIRA and make the change. -- View this message in context: http://apache-ignite-developers.2346864.n4.nabble.com/CacheStoreBalancingWrapper-is-not-serializable-tp8215.html Sent f

Deprecate GridFunc

2016-04-01 Thread Vladimir Ozerov
Igniters, This is about our infamous *GridFunc *class. I suggest to deprecate it and strongly discourage any usage of any method from it. *Motivation:* Currently this class contains ~170 methods. Lots of this methods have poor performance characteristics or broken semantics. - Lots of collection

Re: hive not working with ignite igfs

2016-04-01 Thread Pawan Pawar
Thanks for your reply I am sending my all conf files, please check attachment, I am using igfs://igfs@192.168.1.5:10500 On Fri, Apr 1, 2016 at 12:06 PM, Vladimir Ozerov wrote: > Hi, > > Please provide your XML configuration and IGFS URI you use. > > Vladimir. > > On Thu, Mar 31, 2016 at 1:07 PM,