From hdfs-issues-return-263225-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Thu May 16 15:21:07 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 92D69180675 for ; Thu, 16 May 2019 17:21:07 +0200 (CEST) Received: (qmail 3208 invoked by uid 500); 16 May 2019 15:21:03 -0000 Mailing-List: contact hdfs-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list hdfs-issues@hadoop.apache.org Received: (qmail 3131 invoked by uid 99); 16 May 2019 15:21:02 -0000 Received: from mailrelay1-us-west.apache.org (HELO mailrelay1-us-west.apache.org) (209.188.14.139) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 May 2019 15:21:02 +0000 Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id A9228E2C17 for ; Thu, 16 May 2019 15:21:01 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 014BA25825 for ; Thu, 16 May 2019 15:21:01 +0000 (UTC) Date: Thu, 16 May 2019 15:21:01 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: hdfs-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Work logged] (HDDS-1284) Adjust default values of pipline recovery for more resilient service restart 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/HDDS-1284?focusedWorklogId=243405&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-243405 ] ASF GitHub Bot logged work on HDDS-1284: ---------------------------------------- Author: ASF GitHub Bot Created on: 16/May/19 15:20 Start Date: 16/May/19 15:20 Worklog Time Spent: 10m Work Description: elek commented on issue #733: HDDS-1284. Adjust default values of pipline recovery for more resilient service restart URL: https://github.com/apache/hadoop/pull/733#issuecomment-493112805 Just merged. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 243405) Time Spent: 1h 40m (was: 1.5h) > Adjust default values of pipline recovery for more resilient service restart > ---------------------------------------------------------------------------- > > Key: HDDS-1284 > URL: https://issues.apache.org/jira/browse/HDDS-1284 > Project: Hadoop Distributed Data Store > Issue Type: Bug > Reporter: Elek, Marton > Assignee: Elek, Marton > Priority: Critical > Labels: pull-request-available > Time Spent: 1h 40m > Remaining Estimate: 0h > > As of now we have a following algorithm to handle node failures: > 1. In case of a missing node the leader of the pipline or the scm can detected the missing heartbeats. > 2. SCM will start to close the pipeline (CLOSING state) and try to close the containers with the remaining nodes in the pipeline > 3. After 5 minutes the pipeline will be destroyed (CLOSED) and a new pipeline can be created from the healthy nodes (one node can be part only one pipwline in the same time). > While this algorithm can work well with a big cluster it doesn't provide very good usability on small clusters: > Use case1: > Given 3 nodes, in case of a service restart, if the restart takes more than 90s, the pipline will be moved to the CLOSING state. For the next 5 minutes (ozone.scm.pipeline.destroy.timeout) the container will remain in the CLOSING state. As there are no more nodes and we can't assign the same node to two different pipeline, the cluster will be unavailable for 5 minutes. > Use case2: > Given 90 nodes and 30 pipelines where all the pipelines are spread across 3 racks. Let's stop one rack. As all the pipelines are affected, all the pipelines will be moved to the CLOSING state. We have no free nodes, therefore we need to wait for 5 minutes to write any data to the cluster. > These problems can be solved in multiple ways: > 1.) Instead of waiting 5 minutes, destroy the pipeline when all the containers are reported to be closed. (Most of the time it's enough, but some container report can be missing) > 2.) Support multi-raft and open a pipeline as soon as we have enough nodes (even if the nodes already have a CLOSING pipelines). > Both the options require more work on the pipeline management side. For 0.4.0 we can adjust the following parameters to get better user experience: > {code} > > ozone.scm.pipeline.destroy.timeout > 60s > OZONE, SCM, PIPELINE > > Once a pipeline is closed, SCM should wait for the above configured time > before destroying a pipeline. > > > ozone.scm.stale.node.interval > 90s > OZONE, MANAGEMENT > > The interval for stale node flagging. Please > see ozone.scm.heartbeat.thread.interval before changing this value. > > > {code} > First of all, we can be more optimistic and mark node to stale only after 5 mins instead of 90s. 5 mins should be enough most of the time to recover the nodes. > Second: we can decrease the time of ozone.scm.pipeline.destroy.timeout. Ideally the close command is sent by the scm to the datanode with a HB. Between two HB we have enough time to close all the containers via ratis. With the next HB, datanode can report the successful datanode. (If the containers can be closed the scm can manage the QUASI_CLOSED containers) > We need to wait 29 seconds (worst case) for the next HB, and 29+30 seconds for the confirmation. --> 66 seconds seems to be a safe choice (assuming that 6 seconds is enough to process the report about the successful closing) -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: hdfs-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: hdfs-issues-help@hadoop.apache.org