You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/08/02 07:38:18 UTC

[1/8] ignite git commit: IGNITE-3600 .NET: Fix MessagingTest.TestRemoteListenMultithreaded failure

Repository: ignite
Updated Branches:
  refs/heads/ignite-3553 454f3f88d -> 31c8b990a


IGNITE-3600 .NET: Fix MessagingTest.TestRemoteListenMultithreaded failure

This closes #906


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/fcdb765e
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/fcdb765e
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/fcdb765e

Branch: refs/heads/ignite-3553
Commit: fcdb765e2f9d73d0649a4260ed1324fb41f55a3e
Parents: 982ff9e
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Thu Jul 28 19:02:14 2016 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Thu Jul 28 19:02:14 2016 +0300

----------------------------------------------------------------------
 .../Apache.Ignite.Core.Tests/MessagingTest.cs       | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/fcdb765e/modules/platforms/dotnet/Apache.Ignite.Core.Tests/MessagingTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/MessagingTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/MessagingTest.cs
index e424426..82c6742 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/MessagingTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/MessagingTest.cs
@@ -384,7 +384,7 @@ namespace Apache.Ignite.Core.Tests
                 // Check that listen/stop work concurrently
                 messaging.StopRemoteListen(messaging.RemoteListen(sharedListener));
 
-            }, threadCnt, runSeconds);
+            }, threadCnt, runSeconds / 2);
 
             MessagingTestHelper.ListenResult = false;
 
@@ -396,15 +396,21 @@ namespace Apache.Ignite.Core.Tests
 
             senders.Wait(); // wait for senders to stop
 
-            var sharedResult = MessagingTestHelper.ReceivedMessages.Count;
+            MessagingTestHelper.ClearReceived(int.MaxValue);
 
-            messaging.Send(NextMessage());
+            var lastMsg = NextMessage();
+            messaging.Send(lastMsg);
 
             Thread.Sleep(MessagingTestHelper.MessageTimeout);
 
             // Check that unsubscription worked properly
-            Assert.AreEqual(sharedResult, MessagingTestHelper.ReceivedMessages.Count);
-            
+            var sharedResult = MessagingTestHelper.ReceivedMessages.ToArray();
+
+            if (sharedResult.Length != 0)
+            {
+                Assert.Fail("Unexpected messages ({0}): {1}; last sent message: {2}", sharedResult.Length, 
+                    string.Join(",", sharedResult), lastMsg);
+            }
         }
 
         /// <summary>


[2/8] ignite git commit: TcpCommunicationSpi minor: correct error messages.

Posted by vo...@apache.org.
TcpCommunicationSpi minor: correct error messages.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1cd65888
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1cd65888
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1cd65888

Branch: refs/heads/ignite-3553
Commit: 1cd658883527c55e4a322ea4519254ab3e4a2189
Parents: fcdb765
Author: sboikov <sb...@gridgain.com>
Authored: Fri Jul 29 09:43:41 2016 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Fri Jul 29 09:43:41 2016 +0300

----------------------------------------------------------------------
 .../ignite/spi/communication/tcp/TcpCommunicationSpi.java      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/1cd65888/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
index 2c03b2d..cef85bb 100644
--- a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
+++ b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java
@@ -2429,7 +2429,7 @@ public class TcpCommunicationSpi extends IgniteSpiAdapter
 
                         if (errs == null)
                             errs = new IgniteCheckedException("Failed to connect to node (is node still alive?). " +
-                                "Make sure that each ComputeTask and GridCacheTransaction has a timeout set " +
+                                "Make sure that each ComputeTask and cache Transaction has a timeout set " +
                                 "in order to prevent parties from waiting forever in case of network issues " +
                                 "[nodeId=" + node.id() + ", addrs=" + addrs + ']');
 
@@ -2457,7 +2457,7 @@ public class TcpCommunicationSpi extends IgniteSpiAdapter
 
                         if (errs == null)
                             errs = new IgniteCheckedException("Failed to connect to node (is node still alive?). " +
-                                "Make sure that each ComputeTask and GridCacheTransaction has a timeout set " +
+                                "Make sure that each ComputeTask and cache Transaction has a timeout set " +
                                 "in order to prevent parties from waiting forever in case of network issues " +
                                 "[nodeId=" + node.id() + ", addrs=" + addrs + ']');
 
@@ -2497,7 +2497,7 @@ public class TcpCommunicationSpi extends IgniteSpiAdapter
 
                     if (errs == null)
                         errs = new IgniteCheckedException("Failed to connect to node (is node still alive?). " +
-                            "Make sure that each ComputeTask and GridCacheTransaction has a timeout set " +
+                            "Make sure that each ComputeTask and cache Transaction has a timeout set " +
                             "in order to prevent parties from waiting forever in case of network issues " +
                             "[nodeId=" + node.id() + ", addrs=" + addrs + ']');
 


[5/8] ignite git commit: Merge remote-tracking branch 'remotes/community/ignite-1.6.3' into ignite-1.7

Posted by vo...@apache.org.
Merge remote-tracking branch 'remotes/community/ignite-1.6.3' into ignite-1.7


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/0c5d5886
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/0c5d5886
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/0c5d5886

Branch: refs/heads/ignite-3553
Commit: 0c5d5886e057dac936f637ba8aece087e05b184d
Parents: f6d1d5b 7b3d196
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Fri Jul 29 16:20:58 2016 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Fri Jul 29 16:20:58 2016 +0700

----------------------------------------------------------------------
 .../org/apache/ignite/internal/visor/cache/VisorCacheV4.java     | 2 +-
 .../ignite/internal/visor/node/VisorNodeDataCollectorJob.java    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------



[4/8] ignite git commit: Fixed compatibility.

Posted by vo...@apache.org.
Fixed compatibility.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7b3d1963
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7b3d1963
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7b3d1963

Branch: refs/heads/ignite-3553
Commit: 7b3d1963cb7240ce3f59f5c9f81965bf5730bad0
Parents: 4979c87
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Fri Jul 29 16:03:20 2016 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Fri Jul 29 16:03:20 2016 +0700

----------------------------------------------------------------------
 .../org/apache/ignite/internal/visor/cache/VisorCacheV4.java     | 2 +-
 .../ignite/internal/visor/node/VisorNodeDataCollectorJob.java    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/7b3d1963/modules/core/src/main/java/org/apache/ignite/internal/visor/cache/VisorCacheV4.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/visor/cache/VisorCacheV4.java b/modules/core/src/main/java/org/apache/ignite/internal/visor/cache/VisorCacheV4.java
index 81dbacb..a5f66be 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/visor/cache/VisorCacheV4.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/visor/cache/VisorCacheV4.java
@@ -86,7 +86,7 @@ public class VisorCacheV4 extends VisorCacheV2 {
 
     /** {@inheritDoc} */
     @Override public VisorCache history() {
-        return initHistory(new VisorCacheV3());
+        return initHistory(new VisorCacheV4());
     }
 
     /**

http://git-wip-us.apache.org/repos/asf/ignite/blob/7b3d1963/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorNodeDataCollectorJob.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorNodeDataCollectorJob.java b/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorNodeDataCollectorJob.java
index 1404f8e..611dcde 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorNodeDataCollectorJob.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorNodeDataCollectorJob.java
@@ -57,7 +57,7 @@ public class VisorNodeDataCollectorJob extends VisorJob<VisorNodeDataCollectorTa
     private static final IgniteProductVersion VER_1_4_1 = IgniteProductVersion.fromString("1.4.1");
 
     /** */
-    private static final IgniteProductVersion VER_1_5_9 = IgniteProductVersion.fromString("1.5.9");
+    private static final IgniteProductVersion VER_1_5_10 = IgniteProductVersion.fromString("1.5.10");
 
     /** */
     private static final IgniteProductVersion VER_1_5_26 = IgniteProductVersion.fromString("1.5.26");
@@ -147,7 +147,7 @@ public class VisorNodeDataCollectorJob extends VisorJob<VisorNodeDataCollectorTa
         if (compatibleWith(VER_1_4_1))
             return new VisorCache();
 
-        if (compatibleWith(VER_1_5_9))
+        if (compatibleWith(VER_1_5_10))
             return new VisorCacheV2();
 
         if (compatibleWith(VER_1_5_26))


[6/8] ignite git commit: Release notes for 1.7.

Posted by vo...@apache.org.
Release notes for 1.7.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/6eb116be
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/6eb116be
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/6eb116be

Branch: refs/heads/ignite-3553
Commit: 6eb116be7bf714d203805d05db7ee6c6a665effe
Parents: 0c5d588
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Aug 1 14:11:23 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Aug 1 14:11:23 2016 +0300

----------------------------------------------------------------------
 RELEASE_NOTES.txt | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/6eb116be/RELEASE_NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 60bb248..9febdda 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -3,20 +3,14 @@ Apache Ignite Release Notes
 
 Apache Ignite In-Memory Data Fabric 1.7
 ---------------------------------------
-Ignite .NET:
-* Added NuGet distribution.
-* Fixed a bug in IBinaryObjectBuilder causing type name to be lost.
-
-Ignite C++:
-* Fixed string deserialization performance issue.
-
 Ignite:
-* DR: Fixed a bug causing retention of unused file store data.
-* Fixed CountDownLatch recreation.
-* Node can be assigned as primary only after preloading is finished.
+* Added distributed SQL JOIN.
 * ODBC: Added decimal type support.
-* Supported distributed SQL JOIN.
 * Visor: Fixed data nodes calculation when node filter is set for cache.
+* Node can be assigned as primary only after preloading is finished.
+* Fixed CountDownLatch re-create issue.
+* .NET: Fixed a bug in IBinaryObjectBuilder causing type name to be lost.
+* Many stability and fault-tolerance fixes.
 
 Apache Ignite In-Memory Data Fabric 1.6
 ---------------------------------------


[3/8] ignite git commit: Correction for CacheLateAffinityAssignmentTest.testNoForceKeysRequests.

Posted by vo...@apache.org.
Correction for CacheLateAffinityAssignmentTest.testNoForceKeysRequests.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/f6d1d5b2
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/f6d1d5b2
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/f6d1d5b2

Branch: refs/heads/ignite-3553
Commit: f6d1d5b2d4d07fac10bbdbab3baf979d65c33eb9
Parents: 1cd6588
Author: sboikov <sb...@gridgain.com>
Authored: Fri Jul 29 11:47:43 2016 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Fri Jul 29 11:47:43 2016 +0300

----------------------------------------------------------------------
 .../cache/distributed/CacheLateAffinityAssignmentTest.java       | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/f6d1d5b2/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheLateAffinityAssignmentTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheLateAffinityAssignmentTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheLateAffinityAssignmentTest.java
index 4fb17e8..7e37450 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheLateAffinityAssignmentTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/CacheLateAffinityAssignmentTest.java
@@ -1743,10 +1743,6 @@ public class CacheLateAffinityAssignmentTest extends GridCommonAbstractTest {
 
         final List<CacheConfiguration> ccfgs = new ArrayList<>();
 
-        ccfgs.add(cacheConfiguration("ac1", ATOMIC, 0));
-        ccfgs.add(cacheConfiguration("ac2", ATOMIC, 1));
-        ccfgs.add(cacheConfiguration("ac3", ATOMIC, 2));
-
         ccfgs.add(cacheConfiguration("tc1", TRANSACTIONAL, 0));
         ccfgs.add(cacheConfiguration("tc2", TRANSACTIONAL, 1));
         ccfgs.add(cacheConfiguration("tc3", TRANSACTIONAL, 2));


[7/8] ignite git commit: Release notes for 1.7.

Posted by vo...@apache.org.
Release notes for 1.7.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/de868439
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/de868439
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/de868439

Branch: refs/heads/ignite-3553
Commit: de8684390cb2c5664f4bb8401f4169e930a07e10
Parents: 6eb116b
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Aug 1 14:17:55 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Aug 1 14:17:55 2016 +0300

----------------------------------------------------------------------
 RELEASE_NOTES.txt | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/de868439/RELEASE_NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 9febdda..d8a13e7 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -5,13 +5,21 @@ Apache Ignite In-Memory Data Fabric 1.7
 ---------------------------------------
 Ignite:
 * Added distributed SQL JOIN.
-* ODBC: Added decimal type support.
-* Visor: Fixed data nodes calculation when node filter is set for cache.
 * Node can be assigned as primary only after preloading is finished.
 * Fixed CountDownLatch re-create issue.
-* .NET: Fixed a bug in IBinaryObjectBuilder causing type name to be lost.
+* ODBC: Added decimal type support.
+* Visor: Fixed data nodes calculation when node filter is set for cache.
 * Many stability and fault-tolerance fixes.
 
+Ignite.NET:
+* Added ASP.NET Output Cache provider.
+* Added ability to use .NET configuration in Apache.Ignite.exe.
+* Added ability to implement custom affinity functions.
+* Fixed a bug in IBinaryObjectBuilder causing type name to be lost.
+
+Ignite CPP:
+* Marshalling performance improvements.
+
 Apache Ignite In-Memory Data Fabric 1.6
 ---------------------------------------
 Ignite .NET:


[8/8] ignite git commit: Merge branch 'ignite-1.7.1' into ignite-3553

Posted by vo...@apache.org.
Merge branch 'ignite-1.7.1' into ignite-3553


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/31c8b990
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/31c8b990
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/31c8b990

Branch: refs/heads/ignite-3553
Commit: 31c8b990aaf6822708618b0c3e3430f7d953afd2
Parents: 454f3f8 de86843
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Tue Aug 2 10:38:04 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Tue Aug 2 10:38:04 2016 +0300

----------------------------------------------------------------------
 RELEASE_NOTES.txt                               | 22 +++++++++++---------
 .../internal/visor/cache/VisorCacheV4.java      |  2 +-
 .../visor/node/VisorNodeDataCollectorJob.java   |  4 ++--
 .../communication/tcp/TcpCommunicationSpi.java  |  6 +++---
 .../CacheLateAffinityAssignmentTest.java        |  4 ----
 .../Apache.Ignite.Core.Tests/MessagingTest.cs   | 16 +++++++++-----
 6 files changed, 29 insertions(+), 25 deletions(-)
----------------------------------------------------------------------