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 B1D40200BBE for ; Fri, 28 Oct 2016 01:08:00 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B05B5160B04; Thu, 27 Oct 2016 23:08: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 08C03160AF6 for ; Fri, 28 Oct 2016 01:07:59 +0200 (CEST) Received: (qmail 5315 invoked by uid 500); 27 Oct 2016 23:07:58 -0000 Mailing-List: contact yarn-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list yarn-issues@hadoop.apache.org Received: (qmail 4938 invoked by uid 99); 27 Oct 2016 23:07:58 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Oct 2016 23:07:58 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 814C82C2A6B for ; Thu, 27 Oct 2016 23:07:58 +0000 (UTC) Date: Thu, 27 Oct 2016 23:07:58 +0000 (UTC) From: "Daniel Templeton (JIRA)" To: yarn-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (YARN-5793) Trim configuration values in DockerLinuxContainerRuntime MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 27 Oct 2016 23:08:00 -0000 [ https://issues.apache.org/jira/browse/YARN-5793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15613588#comment-15613588 ] Daniel Templeton commented on YARN-5793: ---------------------------------------- Sorry, I jumped the gun. :) > Trim configuration values in DockerLinuxContainerRuntime > -------------------------------------------------------- > > Key: YARN-5793 > URL: https://issues.apache.org/jira/browse/YARN-5793 > Project: Hadoop YARN > Issue Type: Bug > Components: nodemanager > Affects Versions: 3.0.0-alpha1 > Reporter: Tianyin Xu > Priority: Minor > Attachments: YARN-5793.0000.patch > > > The current implementation of {{DockerLinuxContainerRuntime}} does not follow the practice of trimming configuration values. This leads to errors if users set values containing space or newline. > see the following YARN commits as reference: > YARN-3395. FairScheduler: Trim whitespaces when using username for queuename. > YARN-2869. CapacityScheduler should trim sub queue names when parse configuration. > YARN-2843. Fixed NodeLabelsManager to trim inputs for hosts and labels so as to make them work correctly. > and many other Hadoop/HDFS commits (just list a few): > HDFS-9708. FSNamesystem.initAuditLoggers() doesn't trim classnames > HDFS-2799. Trim fs.checkpoint.dir values. > HADOOP-6578. Configuration should trim whitespace around a lot of value types > HADOOP-6534. Trim whitespace from directory lists initializing > Patch is available against trunk > {code:title=DockerLinuxContainerRuntime.java|borderStyle=solid} > @@ -219,9 +219,9 @@ public void initialize(Configuration conf) > dockerClient = new DockerClient(conf); > allowedNetworks.clear(); > allowedNetworks.addAll(Arrays.asList( > - conf.getStrings(YarnConfiguration.NM_DOCKER_ALLOWED_CONTAINER_NETWORKS, > + conf.getTrimmedStrings(YarnConfiguration.NM_DOCKER_ALLOWED_CONTAINER_NETWORKS, > YarnConfiguration.DEFAULT_NM_DOCKER_ALLOWED_CONTAINER_NETWORKS))); > - defaultNetwork = conf.get( > + defaultNetwork = conf.getTrimmed( > YarnConfiguration.NM_DOCKER_DEFAULT_CONTAINER_NETWORK, > YarnConfiguration.DEFAULT_NM_DOCKER_DEFAULT_CONTAINER_NETWORK); > > @@ -237,7 +237,7 @@ public void initialize(Configuration conf) > throw new ContainerExecutionException(message); > } > > - privilegedContainersAcl = new AccessControlList(conf.get( > + privilegedContainersAcl = new AccessControlList(conf.getTrimmed( > YarnConfiguration.NM_DOCKER_PRIVILEGED_CONTAINERS_ACL, > YarnConfiguration.DEFAULT_NM_DOCKER_PRIVILEGED_CONTAINERS_ACL)); > } > @@ -439,7 +439,7 @@ public void launchContainer(ContainerRuntimeContext ctx) > LOCALIZED_RESOURCES); > @SuppressWarnings("unchecked") > List userLocalDirs = ctx.getExecutionAttribute(USER_LOCAL_DIRS); > - Set capabilities = new HashSet<>(Arrays.asList(conf.getStrings( > + Set capabilities = new HashSet<>(Arrays.asList(conf.getTrimmedStrings( > YarnConfiguration.NM_DOCKER_CONTAINER_CAPABILITIES, > YarnConfiguration.DEFAULT_NM_DOCKER_CONTAINER_CAPABILITIES))); > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: yarn-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: yarn-issues-help@hadoop.apache.org