[
https://issues.apache.org/jira/browse/IGNITE-8987?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16601823#comment-16601823
]
ASF GitHub Bot commented on IGNITE-8987:
----------------------------------------
GitHub user gromtech opened a pull request:
https://github.com/apache/ignite/pull/4664
IGNITE-8987 Ignite hangs during getting of atomic structure after…
…autoactivation
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/gridgain/apache-ignite ignite-8987
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/ignite/pull/4664.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #4664
----
commit 574be81c62754efa760c94afd50f5e8727688f19
Author: Roman Guseinov <gromcase@...>
Date: 2018-09-03T06:45:53Z
IGNITE-8987 Ignite hangs during getting of atomic structure after
autoactivation
----
> Ignite hangs during getting of atomic structure after autoactivation
> --------------------------------------------------------------------
>
> Key: IGNITE-8987
> URL: https://issues.apache.org/jira/browse/IGNITE-8987
> Project: Ignite
> Issue Type: Bug
> Components: cache
> Affects Versions: 2.4
> Reporter: Andrey Aleksandrov
> Assignee: Roman Guseinov
> Priority: Major
> Fix For: 2.7
>
> Attachments: reproducer.java
>
>
> I investigate the use cases with autoactivation and creating of the
> IgniteAtomicSequence. It hangs on awaitInitialization() method in case if it
> called after the last node from BLT was started.
> Steps to reproduce:
> First iteration:
>
> Do next in one thread:
> 1)Start server 1
> 2)Start server 2
> 3)Activate the cluster
> 4)Create the IgniteAtomicSequence using next code:
> IgniteAtomicSequence igniteAtomicSequence = ignite.atomicSequence(
> "TestName",
> atomicConfiguration,
> 10,
> true);
> Second iteration:
> 1)Start server 1
> 2)Start server 2 (Autoactivation will be started)
> 3)Get the IgniteAtomicSequence using next code:
> IgniteAtomicSequence igniteAtomicSequence = ignite.atomicSequence(
> "TestName",
> 10,
> true); //could be false because TestName was already created in iteration 1
> In this case, we hang in awaitInitialization() method in
> DataStructureProcessor.getAtomic() method.
> In case if I added some sleep timeout between step 2 and 3 in the second
> iteration then everything was ok. Looks like we have some race here.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)