Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 90213200B38 for ; Fri, 24 Jun 2016 00:23:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8EA38160A68; Thu, 23 Jun 2016 22:23:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D7DAA160A59 for ; Fri, 24 Jun 2016 00:23:21 +0200 (CEST) Received: (qmail 38251 invoked by uid 500); 23 Jun 2016 22:23:20 -0000 Mailing-List: contact issues-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list issues@geode.incubator.apache.org Received: (qmail 38239 invoked by uid 99); 23 Jun 2016 22:23:20 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2016 22:23:20 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 62FFBC028E for ; Thu, 23 Jun 2016 22:23:19 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -5.446 X-Spam-Level: X-Spam-Status: No, score=-5.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id dujrcPSWQMrt for ; Thu, 23 Jun 2016 22:23:18 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 4BE945F245 for ; Thu, 23 Jun 2016 22:23:17 +0000 (UTC) Received: (qmail 38230 invoked by uid 99); 23 Jun 2016 22:23:16 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2016 22:23:16 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 22F562C14F8 for ; Thu, 23 Jun 2016 22:23:16 +0000 (UTC) Date: Thu, 23 Jun 2016 22:23:16 +0000 (UTC) From: "Jason Huynh (JIRA)" To: issues@geode.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (GEODE-1588) Starting and stopping wan sender can cause OOME MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 23 Jun 2016 22:23:22 -0000 [ https://issues.apache.org/jira/browse/GEODE-1588?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jason Huynh updated GEODE-1588: ------------------------------- Affects Version/s: (was: 1.0.0-incubating.M2) 1.0.0-incubating.M3 > Starting and stopping wan sender can cause OOME > ------------------------------------------------ > > Key: GEODE-1588 > URL: https://issues.apache.org/jira/browse/GEODE-1588 > Project: Geode > Issue Type: Bug > Components: wan > Affects Versions: 1.0.0-incubating.M3 > Reporter: Jason Huynh > Assignee: Jason Huynh > > The following test will more than likely cause an OOME due to a timing issue in stopping the gateway sender. > {noformat} > public void closingSenderWhileBatchOperationsAreProcessingShouldNotHaveMultipleThreadsReadFromSameStream() throws Exception { > Integer lnPort = (Integer)vm0.invoke(() -> WANTestBase.createFirstLocatorWithDSId( 1 )); > Integer nyPort = (Integer)vm1.invoke(() -> WANTestBase.createFirstRemoteLocator( 2, lnPort )); > createCacheInVMs(nyPort, vm2); > createReceiverInVMs(vm2); > createCacheInVMs(lnPort, vm4); > //keep the maxQueueMemory low enough to trigger eviction > vm4.invoke(() -> WANTestBase.createConcurrentSender( "ln", 2, > false, 100, 101, false, false, null, true, 3, OrderPolicy.KEY )); > vm2.invoke(() -> WANTestBase.createPartitionedRegion( > getTestMethodName() + "_RR", null, 0, 10, isOffHeap() )); > // vm2.invoke(() -> WANTestBase.createPartitionedRegion( > // getTestMethodName() + "_RR", null, 0, 10, isOffHeap() )); > startSenderInVMs("ln", vm4); > vm2.invoke(() -> addListenerToSleepAfterCreateEvent(10, getTestMethodName() + "_RR")); > // vm4.invoke(() -> WANTestBase.createPartitionedRegion( > // getTestMethodName() + "_RR", null, 0, 10, isOffHeap() )); > vm4.invoke(() -> WANTestBase.createReplicatedRegion( > getTestMethodName() + "_RR", "ln", isOffHeap() )); > vm4.invoke(() -> addListenerToSleepAfterCreateEvent(1, getTestMethodName() + "_RR")); > vm4.invokeAsync(() -> WANTestBase.doPutsAfter300( > getTestMethodName() + "_RR", 1000000 )); > Thread.sleep(5000); > stopSenderInVMsAsync("ln", vm4); > Thread.sleep(10000); > for (int i = 0; i < 100; i++) { > startSenderInVMs("ln", vm4); > Thread.sleep(10000); > stopSenderInVMs("ln", vm4); > Thread.sleep(5000); > } > // > // stopSenderInVMsAsync("ln", vm4); > // Thread.sleep(1000); > // startSenderInVMs("ln", vm4); > // Thread.sleep(1000); > vm2.invoke(() -> WANTestBase.validateRegionSize( > getTestMethodName() + "_RR", 10000, 240000)); > } > {noformat} > Due to the way this test is written, I wouldn't necessarily want it checked in as it is very time based and possibly flakey. It will run into the OOME eventually but it's all based on timing. > The issue is that the ack reader thread is reading off the same socket as the gateway sender closing thread, which causes the stream to be corrupted. -- This message was sent by Atlassian JIRA (v6.3.4#6332)