You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ignite TC Bot (Jira)" <ji...@apache.org> on 2021/04/23 12:28:00 UTC

[jira] [Commented] (IGNITE-14424) Cache group re-encryption does not start after cluster secondary activation.

    [ https://issues.apache.org/jira/browse/IGNITE-14424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17330419#comment-17330419 ] 

Ignite TC Bot commented on IGNITE-14424:
----------------------------------------

{panel:title=Branch: [pull/9036/head] Base: [master] : No blockers found!|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}{panel}
{panel:title=Branch: [pull/9036/head] Base: [master] : New Tests (2)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}
{color:#00008b}PDS (Indexing){color} [[tests 1|https://ci.ignite.apache.org/viewLog.html?buildId=5979226]]
* {color:#013220}IgnitePdsWithIndexingTestSuite: CacheGroupReencryptionTest.testDeactivation - PASSED{color}

{color:#00008b}Basic 3{color} [[tests 1|https://ci.ignite.apache.org/viewLog.html?buildId=5977470]]
* {color:#013220}IgniteBasicWithPersistenceTestSuite: CacheGroupReencryptionTest.testDeactivation - PASSED{color}

{panel}
[TeamCity *--&gt; Run :: All* Results|https://ci.ignite.apache.org/viewLog.html?buildId=5978843&amp;buildTypeId=IgniteTests24Java8_RunAll]

> Cache group re-encryption does not start after cluster secondary activation.
> ----------------------------------------------------------------------------
>
>                 Key: IGNITE-14424
>                 URL: https://issues.apache.org/jira/browse/IGNITE-14424
>             Project: Ignite
>          Issue Type: Bug
>    Affects Versions: 2.10
>            Reporter: Pavel Pereslegin
>            Assignee: Pavel Pereslegin
>            Priority: Major
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Cache group re-encryption does not start after cluster secondary activation.
> Reproducer
> {code:java}
>     @Test
>     public void testDeactivation() throws Exception {
>         pageScanRate = 2;
>         checkpointFreq = 10;
>         T2<IgniteEx, IgniteEx> nodes = startTestGrids(true);
>         IgniteEx node0 = nodes.get1();
>         IgniteEx node1 = nodes.get2();
>         createEncryptedCache(node0, node1, cacheName(), null);
>         loadData(100_000);
>         node0.encryption().changeCacheGroupKey(Collections.singleton(cacheName())).get();
>         assertTrue(isReencryptionInProgress(Collections.singleton(cacheName())));
>         node0.cluster().state(ClusterState.INACTIVE);
>         assertFalse(isReencryptionInProgress(Collections.singleton(cacheName())));
>         node0.context().encryption().setReencryptionRate(DFLT_REENCRYPTION_RATE_MBPS);
>         node1.context().encryption().setReencryptionRate(DFLT_REENCRYPTION_RATE_MBPS);
>         node0.cluster().state(ClusterState.ACTIVE);
>         checkGroupKey(CU.cacheId(cacheName()), INITIAL_KEY_ID + 1, MAX_AWAIT_MILLIS); // failing here
>     }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)