Platform .NET (Core Linux) Exit code 1 (new) On TeamCity

2018-07-05 Thread kcheng.mvp
I have triggered my tests many times on TeamCity. every time I get the same result. Platform .NET (Core Linux) pull/4300/head #1109 Exit code 1 (new) https://ci.ignite.apache.org/viewLog.html?buildId=1460429=buildResultsDiv=IgniteTests24Java8_RunBasicTests. I checked the history of

[GitHub] ignite pull request #4319: IGNITE-8945: Add additional checks with informati...

2018-07-05 Thread ivandasch
GitHub user ivandasch opened a pull request: https://github.com/apache/ignite/pull/4319 IGNITE-8945: Add additional checks with informative error message and implement more robust storedcachedata save. You can merge this pull request into a Git repository by running: $ git

[jira] [Created] (IGNITE-8946) AssertionError can occur during reservation of WAL history for historical rebalance

2018-07-05 Thread Ivan Rakov (JIRA)
Ivan Rakov created IGNITE-8946: -- Summary: AssertionError can occur during reservation of WAL history for historical rebalance Key: IGNITE-8946 URL: https://issues.apache.org/jira/browse/IGNITE-8946

Re: Ignite as distributed file storage

2018-07-05 Thread Pavel Kovalenko
Vladimir, I just want to add to my words, that we can implement BLOB storage and then, if community really wants it, we can adapt this storage to use as underlying file system in IGFS. But IGFS shouldn't be entry point for BLOB storage. I think this conclusion can satisfy both of us. 2018-07-06

Re: Add cluster (de)activation events IGNITE-8376

2018-07-05 Thread Dmitriy Setrakyan
On Thu, Jul 5, 2018 at 1:55 AM, Evgenii Zhuravlev wrote: > Guys, > > Do we really need events for activation/deactivation? We already have a > ticket for implementation lifecycle events for it: > https://issues.apache.org/jira/browse/IGNITE-5427, won't it be enough? > Hm... I think these two

Re: Ignite as distributed file storage

2018-07-05 Thread Pavel Kovalenko
Vladimir, I didn't say that it stores data in on-heap, I said that it performs a lot of operations with byte[] arrays in on-heap as I see in , which will lead to frequent GCs and unnecessary data copying. "But the whole idea around mmap sounds like premature optimisation to me" - this is not

Re: Ignite as distributed file storage

2018-07-05 Thread Vladimir Ozerov
Pavel, IGFS doesn't enforce you to have block in heap. What you suggest can be achieved with IGFS as follows: 1) Disable caching, so data cache is not used ("PROXY" mode) 2) Implement IgniteFileSystem interface which operates on abstract streams But the whole idea around mmap sounds like

[jira] [Created] (IGNITE-8945) Stored cache data files corruption when node stops abruptly.

2018-07-05 Thread Ivan Daschinskiy (JIRA)
Ivan Daschinskiy created IGNITE-8945: Summary: Stored cache data files corruption when node stops abruptly. Key: IGNITE-8945 URL: https://issues.apache.org/jira/browse/IGNITE-8945 Project: Ignite

Re: Ignite as distributed file storage

2018-07-05 Thread Pavel Kovalenko
Vladimir, The key difference between BLOB storage and IGFS is that BLOB storage will have persistent-based architecture with possibility to cache blocks in offheap (using mmap, which is more simple, because we delegate it to OS level) , while IGFS has in-memory based architecture with possibility

[GitHub] ignite pull request #4204: IGNITE-8789 Invoke failure processor in case of m...

2018-07-05 Thread agura
Github user agura closed the pull request at: https://github.com/apache/ignite/pull/4204 ---

[GitHub] ignite pull request #4306: IGNITE-8931 Spring Framework versions upgraded

2018-07-05 Thread agura
Github user agura closed the pull request at: https://github.com/apache/ignite/pull/4306 ---

[jira] [Created] (IGNITE-8944) TcpDiscoverySpi: set connection check frequency to fixed value

2018-07-05 Thread Dmitry Karachentsev (JIRA)
Dmitry Karachentsev created IGNITE-8944: --- Summary: TcpDiscoverySpi: set connection check frequency to fixed value Key: IGNITE-8944 URL: https://issues.apache.org/jira/browse/IGNITE-8944

[GitHub] ignite pull request #4318: IGNITE-8935 toString() or exclusion for most clas...

2018-07-05 Thread alamar
GitHub user alamar opened a pull request: https://github.com/apache/ignite/pull/4318 IGNITE-8935 toString() or exclusion for most classes accessible from IgniteConfiguration You can merge this pull request into a Git repository by running: $ git pull

[GitHub] ignite pull request #4299: Ignite 2.4.6.b1

2018-07-05 Thread dkarachentsev
Github user dkarachentsev closed the pull request at: https://github.com/apache/ignite/pull/4299 ---

[jira] [Created] (IGNITE-8943) Deactivation in large cluster hangs during rebalance

2018-07-05 Thread Andrew Medvedev (JIRA)
Andrew Medvedev created IGNITE-8943: --- Summary: Deactivation in large cluster hangs during rebalance Key: IGNITE-8943 URL: https://issues.apache.org/jira/browse/IGNITE-8943 Project: Ignite

[GitHub] ignite pull request #4317: IGNITE-8766 - TcpDiscoverySpi: discovery threads ...

2018-07-05 Thread dkarachentsev
GitHub user dkarachentsev opened a pull request: https://github.com/apache/ignite/pull/4317 IGNITE-8766 - TcpDiscoverySpi: discovery threads naming You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite

[GitHub] ignite pull request #4316: IGNITE-8938 Failure handling for file-decompresso...

2018-07-05 Thread agura
GitHub user agura opened a pull request: https://github.com/apache/ignite/pull/4316 IGNITE-8938 Failure handling for file-decompressor thread added You can merge this pull request into a Git repository by running: $ git pull https://github.com/agura/incubator-ignite

[GitHub] ignite pull request #4315: ignite-8905 with merged master

2018-07-05 Thread sergey-chugunov-1985
GitHub user sergey-chugunov-1985 opened a pull request: https://github.com/apache/ignite/pull/4315 ignite-8905 with merged master You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-8905-mm

[jira] [Created] (IGNITE-8942) In some cases grid cannot be deactivated because of hanging CQ internal cleanup.

2018-07-05 Thread Alexei Scherbakov (JIRA)
Alexei Scherbakov created IGNITE-8942: - Summary: In some cases grid cannot be deactivated because of hanging CQ internal cleanup. Key: IGNITE-8942 URL: https://issues.apache.org/jira/browse/IGNITE-8942

Re: Ignite as distributed file storage

2018-07-05 Thread Vladimir Ozerov
Pavel, Design you described is almost precisely what IGFS does. It has a cache for metadata, split binary data in chunks with intelligent affinity routing. In addition we have map-reduce feature on top of it and integration with underlying file system with optional caching. Data can be accessed in

Re: IgniteConfiguration, TcpDiscoverySpi, TcpCommunicationSpitimeouts

2018-07-05 Thread Valentin Kulichenko
Stan, What is the purpose of clientFailureDetectionTimeout? Why can't we just always use failureDetectionTimeout? Is there any difference between these two timeouts? -Val On Wed, Jul 4, 2018 at 7:00 AM Stanislav Lukyanov wrote: > Hi, > > I’ve updated the proposed documentation update with a

Re: Stable/experimental releases

2018-07-05 Thread Vladimir Ozerov
Hi Dmitriy, AFAIK we have an idea to introduce maintenance releases for Ignite. E.g. 2.6.0 - features, 2.6.1+ - stabilization. This seems to be more standard and flexible approach. чт, 5 июля 2018 г. в 17:39, Dmitry Karachentsev : > Hi igniters! > > Following our discussions about emergency

Stable/experimental releases

2018-07-05 Thread Dmitry Karachentsev
Hi igniters! Following our discussions about emergency releases I see that here might be applied new way for doing releases. Like it was for Linux or like it is for Ubuntu. I mean do interleaving releases: first is experimental with newest features and second - with bug fixes ONLY. For

[jira] [Created] (IGNITE-8941) BinaryInvalidTypeException is thrown on invoke

2018-07-05 Thread Mikhail Cherkasov (JIRA)
Mikhail Cherkasov created IGNITE-8941: - Summary: BinaryInvalidTypeException is thrown on invoke Key: IGNITE-8941 URL: https://issues.apache.org/jira/browse/IGNITE-8941 Project: Ignite

[GitHub] ignite pull request #4314: IGNITE-8619 Remote node could not start in ssh co...

2018-07-05 Thread 1vanan
GitHub user 1vanan opened a pull request: https://github.com/apache/ignite/pull/4314 IGNITE-8619 Remote node could not start in ssh connection You can merge this pull request into a Git repository by running: $ git pull https://github.com/1vanan/ignite IGNITE-8619

[GitHub] ignite pull request #4313: IGNITE-8714

2018-07-05 Thread NSAmelchev
GitHub user NSAmelchev opened a pull request: https://github.com/apache/ignite/pull/4313 IGNITE-8714 For IGNITE-8714. You can merge this pull request into a Git repository by running: $ git pull https://github.com/NSAmelchev/ignite ignite-8714 Alternatively you can review and

[GitHub] ignite pull request #4312: Ignite 2.4.6.b2

2018-07-05 Thread aealeksandrov
GitHub user aealeksandrov opened a pull request: https://github.com/apache/ignite/pull/4312 Ignite 2.4.6.b2 PR created for team city test runs. Please don't merge. You can merge this pull request into a Git repository by running: $ git pull

[GitHub] ignite pull request #4311: IGNITE-8754

2018-07-05 Thread vldpyatkov
GitHub user vldpyatkov opened a pull request: https://github.com/apache/ignite/pull/4311 IGNITE-8754 Node outside of baseline does not start when service configured You can merge this pull request into a Git repository by running: $ git pull

[GitHub] ignite pull request #4310: IGNITE-8570 Create lighter version of GridStringL...

2018-07-05 Thread voipp
GitHub user voipp opened a pull request: https://github.com/apache/ignite/pull/4310 IGNITE-8570 Create lighter version of GridStringLogger You can merge this pull request into a Git repository by running: $ git pull https://github.com/voipp/ignite IGNITE-8570 Alternatively

Re: Erroneous Baseline Topology documentation

2018-07-05 Thread Ivan Rakov
I guess just activating the cluster would add all the existing nodes to the baseline topology? Exactly. Persistent cluster can't exist in active state without baseline topology. First activation will establish BLT from current set of server nodes. Best Regards, Ivan Rakov On 04.07.2018 1:55,

[GitHub] ignite pull request #4309: IGNITE-8940 force fail of testFailGetLock

2018-07-05 Thread akalash
GitHub user akalash opened a pull request: https://github.com/apache/ignite/pull/4309 IGNITE-8940 force fail of testFailGetLock You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-8940 Alternatively

[jira] [Created] (IGNITE-8940) Activation job hangs(IgniteChangeGlobalStateTest#testFailGetLock)

2018-07-05 Thread Anton Kalashnikov (JIRA)
Anton Kalashnikov created IGNITE-8940: - Summary: Activation job hangs(IgniteChangeGlobalStateTest#testFailGetLock) Key: IGNITE-8940 URL: https://issues.apache.org/jira/browse/IGNITE-8940 Project:

[jira] [Created] (IGNITE-8939) Error in binary meta data after RESTORE with wal_compaction

2018-07-05 Thread Evgenii Zagumennov (JIRA)
Evgenii Zagumennov created IGNITE-8939: -- Summary: Error in binary meta data after RESTORE with wal_compaction Key: IGNITE-8939 URL: https://issues.apache.org/jira/browse/IGNITE-8939 Project:

[jira] [Created] (IGNITE-8938) file-decompressor thread termination should be handled with Failure handler

2018-07-05 Thread Andrey Gura (JIRA)
Andrey Gura created IGNITE-8938: --- Summary: file-decompressor thread termination should be handled with Failure handler Key: IGNITE-8938 URL: https://issues.apache.org/jira/browse/IGNITE-8938 Project:

[GitHub] ignite pull request #4244: IGNITE-8737: Improve checkpoint logging informati...

2018-07-05 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/4244 ---

[jira] [Created] (IGNITE-8937) JVM Crash in C++ suites on Windows/Java 8 (in PageIO)

2018-07-05 Thread Ilya Kasnacheev (JIRA)
Ilya Kasnacheev created IGNITE-8937: --- Summary: JVM Crash in C++ suites on Windows/Java 8 (in PageIO) Key: IGNITE-8937 URL: https://issues.apache.org/jira/browse/IGNITE-8937 Project: Ignite

Re: Cases of using AffinityAssignment.clientEventChange method

2018-07-05 Thread Maxim Muzafarov
Hello everyone, Suppose clientEventChange method is useless and have confusing name. I'm suggesting to remove it as not used. I've filed issue for it: https://issues.apache.org/jira/browse/IGNITE-8936 чт, 28 июн. 2018 г. в 16:53, Maxim Muzafarov : > Hi Igniters, > > Recently I've faced with

[jira] [Created] (IGNITE-8936) Remove AffinityAssignment#clientEventChange as not used

2018-07-05 Thread Maxim Muzafarov (JIRA)
Maxim Muzafarov created IGNITE-8936: --- Summary: Remove AffinityAssignment#clientEventChange as not used Key: IGNITE-8936 URL: https://issues.apache.org/jira/browse/IGNITE-8936 Project: Ignite

[jira] [Created] (IGNITE-8935) IgniteConfiguration dependents should have toString

2018-07-05 Thread Ilya Kasnacheev (JIRA)
Ilya Kasnacheev created IGNITE-8935: --- Summary: IgniteConfiguration dependents should have toString Key: IGNITE-8935 URL: https://issues.apache.org/jira/browse/IGNITE-8935 Project: Ignite

Re: Add cluster (de)activation events IGNITE-8376

2018-07-05 Thread Evgenii Zhuravlev
Guys, Do we really need events for activation/deactivation? We already have a ticket for implementation lifecycle events for it: https://issues.apache.org/jira/browse/IGNITE-5427, won't it be enough? Evgenii 2018-07-03 16:06 GMT+03:00 Ken Cheng : > Hi dsetrakyan, > > I checked the source again

Re: .NET tests fail on Linux - need help with TeamCity

2018-07-05 Thread Petr Ivanov
I can. Can you prepare reproduce steps so that I’ll be able to pinpoint the problem faster, please? > On 5 Jul 2018, at 11:25, Pavel Tupitsyn wrote: > > Igniters, > > I need help with TeamCity. > .NET Linux Tests [1] fail for a very weird reason: > Newtonsoft.Json.dll seems to be corrupted

[GitHub] ignite pull request #4308: IGNITE-8934 remove error message when LongJVMPaus...

2018-07-05 Thread ezhuravl
GitHub user ezhuravl opened a pull request: https://github.com/apache/ignite/pull/4308 IGNITE-8934 remove error message when LongJVMPauseDetector stops You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite

.NET tests fail on Linux - need help with TeamCity

2018-07-05 Thread Pavel Tupitsyn
Igniters, I need help with TeamCity. .NET Linux Tests [1] fail for a very weird reason: Newtonsoft.Json.dll seems to be corrupted or empty " *Image is too small.* ". I tried adding a step to clean NuGet caches, but it does not help. On my Ubuntu box tests pass. And there were no changes to .NET

[jira] [Created] (IGNITE-8934) LongJVMPauseDetector prints error on thread interruption when node stopping

2018-07-05 Thread Evgenii Zhuravlev (JIRA)
Evgenii Zhuravlev created IGNITE-8934: - Summary: LongJVMPauseDetector prints error on thread interruption when node stopping Key: IGNITE-8934 URL: https://issues.apache.org/jira/browse/IGNITE-8934

[GitHub] ignite pull request #4307: IGNITE-8361 Use discovery messages for service de...

2018-07-05 Thread daradurvs
GitHub user daradurvs opened a pull request: https://github.com/apache/ignite/pull/4307 IGNITE-8361 Use discovery messages for service deployment You can merge this pull request into a Git repository by running: $ git pull https://github.com/daradurvs/ignite ignite-8361-rc

[jira] [Created] (IGNITE-8933) Fix web-console tests CI because of package-lock

2018-07-05 Thread Alexander Kalinin (JIRA)
Alexander Kalinin created IGNITE-8933: - Summary: Fix web-console tests CI because of package-lock Key: IGNITE-8933 URL: https://issues.apache.org/jira/browse/IGNITE-8933 Project: Ignite

Re: Automatic cluster activation from code

2018-07-05 Thread Sergey Dorozhkin
Igniters, I think I found answer to my questions in another email thread - "Erroneous Baseline Topology documentation". Thanks! вт, 26 июн. 2018 г. в 20:18, Sergey Dorozhkin : > Hello Igniters, > > I planing to start work on IGNITE-5427 and I little confused. > The Baseline Topology