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 F2B5610A34 for ; Thu, 29 May 2014 23:22:03 +0000 (UTC) Received: (qmail 76083 invoked by uid 500); 29 May 2014 23:22:03 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 76031 invoked by uid 500); 29 May 2014 23:22:03 -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 76022 invoked by uid 99); 29 May 2014 23:22:03 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 May 2014 23:22:03 +0000 Date: Thu, 29 May 2014 23:22:03 +0000 (UTC) From: "Andrew Wang (JIRA)" To: hdfs-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HDFS-6375) Listing extended attributes with the search permission 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/HDFS-6375?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14013094#comment-14013094 ] Andrew Wang commented on HDFS-6375: ----------------------------------- I took a hack at fixing the java warning, I think this works: {code} List names = Lists.newArrayListWithCapacity(json.keySet().size()); for (Object o: json.keySet()) { names.add((String)o); } return names; {code} Also, why are we using a map still with {{JsonUtil#toJsonMap(List)}}? Shouldn't we be doing {{toJsonArray}}? > Listing extended attributes with the search permission > ------------------------------------------------------ > > Key: HDFS-6375 > URL: https://issues.apache.org/jira/browse/HDFS-6375 > Project: Hadoop HDFS > Issue Type: Improvement > Components: namenode > Affects Versions: 3.0.0 > Reporter: Andrew Wang > Assignee: Charles Lamb > Attachments: HDFS-6375.1.patch, HDFS-6375.10.patch, HDFS-6375.2.patch, HDFS-6375.3.patch, HDFS-6375.4.patch, HDFS-6375.5.patch, HDFS-6375.6.patch, HDFS-6375.7.patch, HDFS-6375.8.patch, HDFS-6375.9.patch > > > From the attr(5) manpage: > {noformat} > Users with search access to a file or directory may retrieve a list of > attribute names defined for that file or directory. > {noformat} > This is like doing {{getfattr}} without the {{-d}} flag, which we currently don't support. -- This message was sent by Atlassian JIRA (v6.2#6252)