Repository: ignite Updated Branches: refs/heads/ignite-3212 0e729dea8 -> bbb15cc83
ignite-3212 Dump debug info on exchange timeout Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/bbb15cc8 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/bbb15cc8 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/bbb15cc8 Branch: refs/heads/ignite-3212 Commit: bbb15cc8394b984ee2108777622be894ab668511 Parents: 0e729de Author: sboikov <[email protected]> Authored: Wed Jun 1 13:44:40 2016 +0300 Committer: sboikov <[email protected]> Committed: Wed Jun 1 13:44:40 2016 +0300 ---------------------------------------------------------------------- .../dht/preloader/GridDhtPartitionsExchangeFuture.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/bbb15cc8/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java index c433108..178d490 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java @@ -420,6 +420,9 @@ public class GridDhtPartitionsExchangeFuture extends GridFutureAdapter<AffinityT if (isDone()) return; + if (log.isInfoEnabled()) + log.info("Init exchange [localNode=" + cctx.localNodeId() + ", id= " + exchId + ']'); + initTs = U.currentTimeMillis(); U.await(evtLatch);
