Return-Path: X-Original-To: apmail-hadoop-hdfs-dev-archive@minotaur.apache.org Delivered-To: apmail-hadoop-hdfs-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6730C10C25 for ; Thu, 13 Feb 2014 22:31:29 +0000 (UTC) Received: (qmail 82291 invoked by uid 500); 13 Feb 2014 22:31:27 -0000 Delivered-To: apmail-hadoop-hdfs-dev-archive@hadoop.apache.org Received: (qmail 82150 invoked by uid 500); 13 Feb 2014 22:31:26 -0000 Mailing-List: contact hdfs-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-dev@hadoop.apache.org Delivered-To: mailing list hdfs-dev@hadoop.apache.org Received: (qmail 82141 invoked by uid 99); 13 Feb 2014 22:31:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Feb 2014 22:31:26 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of aagarwal@hortonworks.com designates 209.85.214.179 as permitted sender) Received: from [209.85.214.179] (HELO mail-ob0-f179.google.com) (209.85.214.179) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Feb 2014 22:31:22 +0000 Received: by mail-ob0-f179.google.com with SMTP id wo20so12900212obc.24 for ; Thu, 13 Feb 2014 14:31:01 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=cczn9aVcewThZ7HSZHGewKiamdKtrazOZXoEeZ3Mzwc=; b=FN5fVK5TZkqzoFbcFFVM7b7eJxk6wieOkK6YI7c9R/J9vfJ8Wa4amNjgS8VGD1D1r8 18kj0Mq1enyllN9BLnD0vf2VZvseESAvS92YXnJ6C1ZAoot0E5kETOCgT5t75sESja6z 0pTe9TaeDVp482cbv43XnqQc5f60Fwcdq2KeDn2a4CWtx5QG/wcOccOyrWHTYbY7Fvvi 24Pp32cbRHbZBaG6Wr+tsyVyL2/8Ewcjkqq2dQioNyTi1Ark7GiOODTG40KH1YzsHf6v m0zH8jrH4s1/47vkRJz1nwgP7TgvEqP98ql1vN3BT58F/ESholOVgH1upUC73w3iA0jd jCZQ== X-Gm-Message-State: ALoCoQngy1ZXuXpPYY80h7bslsP48N0eCCOrPcq+HhS7cBZliofugMW+DoT8h2xvu3gleTvAFuqOIGXtJPPRjMeqOBuledvUggBZGcmYQIdjOnzgF2tLYEg= MIME-Version: 1.0 X-Received: by 10.182.135.165 with SMTP id pt5mr2917769obb.66.1392330661286; Thu, 13 Feb 2014 14:31:01 -0800 (PST) Received: by 10.76.27.167 with HTTP; Thu, 13 Feb 2014 14:31:01 -0800 (PST) In-Reply-To: References: Date: Thu, 13 Feb 2014 14:31:01 -0800 Message-ID: Subject: Re: [VOTE] Merge HDFS-4685 HDFS ACLs to trunk From: Arpit Agarwal To: "hdfs-dev@hadoop.apache.org" Content-Type: multipart/alternative; boundary=089e0112cb9e79f10d04f2513ef1 X-Virus-Checked: Checked by ClamAV on apache.org --089e0112cb9e79f10d04f2513ef1 Content-Type: text/plain; charset=US-ASCII +1 I was involved with some code reviews and the feature branch is looking good. This is ready for merging to trunk. On Thu, Feb 13, 2014 at 1:44 PM, Jing Zhao wrote: > +1. ACL is a very useful feature. I reviewed some of the jiras and the > code is in a very good shape. > > Thanks, > -Jing > > On Thu, Feb 13, 2014 at 1:18 PM, Suresh Srinivas > wrote: > > +1. I have been part of the design of this feature. Thanks to everyone > who > > contributed to this feature development! > > > > > > On Mon, Feb 10, 2014 at 4:46 PM, Chris Nauroth >wrote: > > > >> Hello everyone, > >> > >> I would like to call a vote to merge HDFS ACLs from branch HDFS-4685 to > >> trunk. > >> > >> HDFS ACLs provide support for finer-grained permissions on files than > what > >> users can express today using traditional Unix permission bits. An ACL > >> (Access Control List) consists of a set of ACL entries. Each ACL entry > >> names a specific user or group and grants or denies read, write and > execute > >> permissions for that specific user or group. > >> > >> Development of this feature has been tracked in issue HDFS-4685: > >> https://issues.apache.org/jira/browse/HDFS-4685 > >> > >> The current design document is available here: > >> > >> > https://issues.apache.org/jira/secure/attachment/12627729/HDFS-ACLs-Design-3.pdf > >> > >> All development work has been committed to the HDFS-4685 feature branch: > >> http://svn.apache.org/viewvc/hadoop/common/branches/HDFS-4685/ > >> > >> We're currently working on resolving conflicts with the fsimage protobuf > >> merge, and we expect to complete that work soon. > >> > >> The feature is backwards-compatible. By default, the feature is > disabled. > >> A cluster administrator must enable support for ACLs in configuration. > >> There is no impact to existing clusters that choose to leave ACL > support > >> disabled. > >> > >> In addition to the existing tests that cover permissions, we've > developed > >> more than 200 new tests covering the new ACL get and set APIs through > >> DistributedFileSystem and WebHdfsFileSystem, the new CLI commands, > >> enforcement of ACLs during file access, integration with the existing > >> permissions model, persistence of ACLs to fsimage and edits, and more. > We > >> have documented our further system testing plans in a test plan document > >> attached to issue HDFS-4685. > >> > >> I want to thank the numerous contributors who have participated in the > >> branch development up to this point. Code contributors are Vinayakumar > B, > >> Sachin Jose, Renil Joseph, Haohui Mai, Chris Nauroth and Jing Zhao. > Yesha > >> Vora contributed the test plan. The design document incorporates > feedback > >> from many community members: Dilli Arumugam, Brandon Li, Haohui Mai, > Kevin > >> Minder, Chris Nauroth, Sanjay Radia, Suresh Srinivas, Tsz Wo (Nicholas), > >> SZE and Jing Zhao. Code reviewers on individual patches include Arpit > >> Agarwal, Colin Patrick McCabe, Haohui Mai, Chris Nauroth and Jing Zhao. > >> > >> This vote runs for a week and closes on 2/17/2014 at 11:59 pm PT. > >> > >> Chris Nauroth > >> Hortonworks > >> http://hortonworks.com/ > >> > >> -- > >> CONFIDENTIALITY NOTICE > >> NOTICE: This message is intended for the use of the individual or > entity to > >> which it is addressed and may contain information that is confidential, > >> privileged and exempt from disclosure under applicable law. If the > reader > >> of this message is not the intended recipient, you are hereby notified > that > >> any printing, copying, dissemination, distribution, disclosure or > >> forwarding of this communication is strictly prohibited. If you have > >> received this communication in error, please contact the sender > immediately > >> and delete it from your system. Thank You. > >> > > > > > > > > -- > > http://hortonworks.com/download/ > > > > -- > > CONFIDENTIALITY NOTICE > > NOTICE: This message is intended for the use of the individual or entity > to > > which it is addressed and may contain information that is confidential, > > privileged and exempt from disclosure under applicable law. If the reader > > of this message is not the intended recipient, you are hereby notified > that > > any printing, copying, dissemination, distribution, disclosure or > > forwarding of this communication is strictly prohibited. If you have > > received this communication in error, please contact the sender > immediately > > and delete it from your system. Thank You. > > -- > CONFIDENTIALITY NOTICE > NOTICE: This message is intended for the use of the individual or entity to > which it is addressed and may contain information that is confidential, > privileged and exempt from disclosure under applicable law. If the reader > of this message is not the intended recipient, you are hereby notified that > any printing, copying, dissemination, distribution, disclosure or > forwarding of this communication is strictly prohibited. If you have > received this communication in error, please contact the sender immediately > and delete it from your system. Thank You. > -- CONFIDENTIALITY NOTICE NOTICE: This message is intended for the use of the individual or entity to which it is addressed and may contain information that is confidential, privileged and exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, you are hereby notified that any printing, copying, dissemination, distribution, disclosure or forwarding of this communication is strictly prohibited. If you have received this communication in error, please contact the sender immediately and delete it from your system. Thank You. --089e0112cb9e79f10d04f2513ef1--