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 459DD200BE3 for ; Thu, 22 Dec 2016 19:15:00 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 44006160B26; Thu, 22 Dec 2016 18:15:00 +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 8FA0E160B1B for ; Thu, 22 Dec 2016 19:14:59 +0100 (CET) Received: (qmail 19990 invoked by uid 500); 22 Dec 2016 18:14:58 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 19954 invoked by uid 99); 22 Dec 2016 18:14:58 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Dec 2016 18:14:58 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 6FD782C1F56 for ; Thu, 22 Dec 2016 18:14:58 +0000 (UTC) Date: Thu, 22 Dec 2016 18:14:58 +0000 (UTC) From: "Yu Li (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-17361) HTable#getBufferedMutator is not thread safe and could cause data loss MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 22 Dec 2016 18:15:00 -0000 [ https://issues.apache.org/jira/browse/HBASE-17361?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15770703#comment-15770703 ] Yu Li commented on HBASE-17361: ------------------------------- btw, making all mutator access synchronized will downgrade performance, please refer to HBASE-14687 for more details. > HTable#getBufferedMutator is not thread safe and could cause data loss > ---------------------------------------------------------------------- > > Key: HBASE-17361 > URL: https://issues.apache.org/jira/browse/HBASE-17361 > Project: HBase > Issue Type: Bug > Affects Versions: 1.1.7, 1.2.4 > Reporter: Yu Li > Assignee: Yu Li > Priority: Critical > Attachments: HBASE-17361.patch > > > Now we have {{HTable#getBufferedMutator}} like > {code} > BufferedMutator getBufferedMutator() throws IOException { > if (mutator == null) { > this.mutator = (BufferedMutatorImpl) connection.getBufferedMutator( > new BufferedMutatorParams(tableName) > .pool(pool) > .writeBufferSize(connConfiguration.getWriteBufferSize()) > .maxKeyValueSize(connConfiguration.getMaxKeyValueSize()) > ); > } > mutator.setRpcTimeout(writeRpcTimeout); > mutator.setOperationTimeout(operationTimeout); > return mutator; > } > {code} > And {{HTable#flushCommits}}: > {code} > void flushCommits() throws IOException { > if (mutator == null) { > // nothing to flush if there's no mutator; don't bother creating one. > return; > } > getBufferedMutator().flush(); > } > {code} > For {{HTable#put}} > {code} > public void put(final Put put) throws IOException { > getBufferedMutator().mutate(put); > flushCommits(); > } > {code} > If we launch multiple threads to put in parallel, below sequence might happen because {{HTable#getBufferedMutator}} is not thread safe: > {noformat} > 1. ThreadA runs to getBufferedMutator and finds mutator==null > 2. ThreadB runs to getBufferedMutator and finds mutator==null > 3. ThreadA initialize mutator to instanceA, then calls mutator#mutate, > adding one put (putA) into {{writeAsyncBuffer}} > 4. ThreadB initialize mutator to instanceB > 5. ThreadA runs to flushCommits, now mutator is instanceB, it calls > instanceB's flush method, putA is lost > {noformat} > Will add a UT to cover this case, and fix it in this JIRA. -- This message was sent by Atlassian JIRA (v6.3.4#6332)