Return-Path: X-Original-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 19E809865 for ; Tue, 28 Feb 2012 23:53:16 +0000 (UTC) Received: (qmail 3409 invoked by uid 500); 28 Feb 2012 23:53:15 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 3380 invoked by uid 500); 28 Feb 2012 23:53:15 -0000 Mailing-List: contact hdfs-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-issues@hadoop.apache.org Delivered-To: mailing list hdfs-issues@hadoop.apache.org Received: (qmail 3371 invoked by uid 99); 28 Feb 2012 23:53:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2012 23:53:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2012 23:53:14 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id CE63154C61 for ; Tue, 28 Feb 2012 23:52:54 +0000 (UTC) Date: Tue, 28 Feb 2012 23:52:54 +0000 (UTC) From: "Todd Lipcon (Updated) (JIRA)" To: hdfs-issues@hadoop.apache.org Message-ID: <1994861078.198.1330473174846.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <296475267.29872.1330457866290.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (HDFS-3025) Automatic log sync shouldn't happen inside logEdit path MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HDFS-3025?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Todd Lipcon updated HDFS-3025: ------------------------------ Attachment: hdfs-3025.txt Fairly simple patch. I tested this out on a 100-node cluster running the HA branch with HA off -- a workload which causes a lot of non-synced log edits. I could see the logsyncs happening on the correct thread using jstack, and verified that performance was improved, with fewer threads blocked. > Automatic log sync shouldn't happen inside logEdit path > ------------------------------------------------------- > > Key: HDFS-3025 > URL: https://issues.apache.org/jira/browse/HDFS-3025 > Project: Hadoop HDFS > Issue Type: Improvement > Components: name-node, performance > Affects Versions: 0.23.3 > Reporter: Todd Lipcon > Assignee: Todd Lipcon > Attachments: hdfs-3025.txt > > > HDFS-3020 fixes the "automatic log sync" functionality so that, when logEdits is called without log sync, it eventually triggers a sync. That sync ends up being inline, though, which means the FSN lock is usually held during it. This causes a bunch of threads to pile up. > Instead, we should have it just set a "syncNeeded" flag and trigger a sync from another thread which isn't holding the lock (or from the same thread using a "logSyncIfNeeded" call). > (credit to the FB branch for this idea) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira