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 B64EF200BFA for ; Thu, 12 Jan 2017 10:34:53 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B4DBA160B40; Thu, 12 Jan 2017 09:34:53 +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 0AF63160B2D for ; Thu, 12 Jan 2017 10:34:52 +0100 (CET) Received: (qmail 27269 invoked by uid 500); 12 Jan 2017 09:34:52 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 27258 invoked by uid 99); 12 Jan 2017 09:34:52 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Jan 2017 09:34:52 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id EF2B62C0298 for ; Thu, 12 Jan 2017 09:34:51 +0000 (UTC) Date: Thu, 12 Jan 2017 09:34:51 +0000 (UTC) From: "Sylvain Lebresne (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CASSANDRA-13115) Read repair is not blocking repair to finish in foreground repair MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 12 Jan 2017 09:34:53 -0000 [ https://issues.apache.org/jira/browse/CASSANDRA-13115?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sylvain Lebresne updated CASSANDRA-13115: ----------------------------------------- Assignee: Sylvain Lebresne Fix Version/s: 3.x 3.0.x Status: Patch Available (was: Open) You're absolutely right, this is clearly wrong, thanks for noticing. I'm attaching the pretty trivial fix. Now, while looking at this, I realized we were also not handling "asynchronous read repairs" properly as we were not consuming the result of {{resolve()}} in that case. So a 2nd commit fixes that part (also fairly trivial). | [13115-3.0|https://github.com/pcmanus/cassandra/commits/13115-3.0] | [utests|http://cassci.datastax.com/job/pcmanus-13115-3.0-testall] | [dtests|http://cassci.datastax.com/job/pcmanus-13115-3.0-dtest] | | [13115-3.X|https://github.com/pcmanus/cassandra/commits/13115-3.X] | [utests|http://cassci.datastax.com/job/pcmanus-13115-3.X-testall] | [dtests|http://cassci.datastax.com/job/pcmanus-13115-3.X-dtest] | > Read repair is not blocking repair to finish in foreground repair > ----------------------------------------------------------------- > > Key: CASSANDRA-13115 > URL: https://issues.apache.org/jira/browse/CASSANDRA-13115 > Project: Cassandra > Issue Type: Bug > Environment: ccm on OSX > Reporter: Xiaolong Jiang > Assignee: Sylvain Lebresne > Fix For: 3.0.x, 3.x > > > The code trying to wait(block) for repair result to come back in 3.X is below: > {code:title= DataResolver.java|borderStyle=solid} > public void close() > { > try > { > FBUtilities.waitOnFutures(repairResults, DatabaseDescriptor.getWriteRpcTimeout()); > } > catch (TimeoutException ex) > { > // We got all responses, but timed out while repairing > int blockFor = consistency.blockFor(keyspace); > if (Tracing.isTracing()) > Tracing.trace("Timed out while read-repairing after receiving all {} data and digest responses", blockFor); > else > logger.debug("Timeout while read-repairing after receiving all {} data and digest responses", blockFor); > throw new ReadTimeoutException(consistency, blockFor-1, blockFor, true); > } > } > {code} > in DataResolver class, but this close method is never called and it's also not auto close(RepairMergeListener is not extending from AutoCloseable/CloseableIterator) which means we never wait for repair to finish before returning final result. > The steps to reproduce: > 1. create some keyspace/table with RF = 2 > 2. start 2 nodes using ccm > 3. stop node2 > 4. disable node1 hinted hand off > 5. write some data to node1 with consistency level one > 6. start node2 > 7. query some data from node1 > This should trigger read repair. I put some log in above close method, and can not see log print put. > So this bug will basically violate "monotonic quorum reads " guarantee. -- This message was sent by Atlassian JIRA (v6.3.4#6332)