From issues-return-120494-archive-asf-public=cust-asf.ponee.io@ignite.apache.org Wed Jun 2 09:17:02 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 3B7AF180638 for ; Wed, 2 Jun 2021 11:17:02 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id 7C0343FB6D for ; Wed, 2 Jun 2021 09:17:01 +0000 (UTC) Received: (qmail 36594 invoked by uid 500); 2 Jun 2021 09:17:01 -0000 Mailing-List: contact issues-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list issues@ignite.apache.org Received: (qmail 36570 invoked by uid 99); 2 Jun 2021 09:17:01 -0000 Received: from ec2-52-204-25-47.compute-1.amazonaws.com (HELO mailrelay1-ec2-va.apache.org) (52.204.25.47) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jun 2021 09:17:01 +0000 Received: from jira2-he-de.apache.org (jira2-he-de.apache.org [168.119.33.54]) by mailrelay1-ec2-va.apache.org (ASF Mail Server at mailrelay1-ec2-va.apache.org) with ESMTPS id 282F23E975 for ; Wed, 2 Jun 2021 09:17:01 +0000 (UTC) Received: from jira2-he-de.apache.org (localhost.localdomain [127.0.0.1]) by jira2-he-de.apache.org (ASF Mail Server at jira2-he-de.apache.org) with ESMTP id 2F725C802C6 for ; Wed, 2 Jun 2021 09:17:00 +0000 (UTC) Date: Wed, 2 Jun 2021 09:17:00 +0000 (UTC) From: "Pavel Pereslegin (Jira)" To: issues@ignite.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (IGNITE-14424) Cache group re-encryption does not start after cluster secondary activation. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/IGNITE-14424?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavel Pereslegin updated IGNITE-14424: -------------------------------------- Fix Version/s: 2.11 > 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 > Fix For: 2.11 > > 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 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)