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 84098200D5F for ; Mon, 18 Dec 2017 22:50:06 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 82CE3160BFB; Mon, 18 Dec 2017 21:50:06 +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 CB0CD160C2A for ; Mon, 18 Dec 2017 22:50:05 +0100 (CET) Received: (qmail 10572 invoked by uid 500); 18 Dec 2017 21:50:04 -0000 Mailing-List: contact dev-help@hawq.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hawq.incubator.apache.org Delivered-To: mailing list dev@hawq.incubator.apache.org Received: (qmail 10468 invoked by uid 99); 18 Dec 2017 21:50:04 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Dec 2017 21:50:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 4B6D81806FC for ; Mon, 18 Dec 2017 21:50:04 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RCVD_IN_DNSWL_NONE=-0.0001, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id aLHAXStbEIPW for ; Mon, 18 Dec 2017 21:50:03 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id D4BD55F5C6 for ; Mon, 18 Dec 2017 21:50:02 +0000 (UTC) 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 C4FA3E0E53 for ; Mon, 18 Dec 2017 21:50: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 3B80A240FA for ; Mon, 18 Dec 2017 21:50:00 +0000 (UTC) Date: Mon, 18 Dec 2017 21:50:00 +0000 (UTC) From: "Peter Parente (JIRA)" To: dev@hawq.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HAWQ-1574) libhdfs fails silently when hdfs extended acls are in use MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 18 Dec 2017 21:50:06 -0000 Peter Parente created HAWQ-1574: ----------------------------------- Summary: libhdfs fails silently when hdfs extended acls are in use Key: HAWQ-1574 URL: https://issues.apache.org/jira/browse/HAWQ-1574 Project: Apache HAWQ Issue Type: Bug Components: libhdfs Reporter: Peter Parente Assignee: Radar Lei {code} # list files in a folder hdfs.ls('/user/p-pparente/example') ['/user/p-pparente/example/1', '/user/p-pparente/example/2', '/user/p-pparente/example/3'] # using the standard hdfs CLI, set some extended acls # hdfs dfs -setfacl -m user:analytics:rwx /user/p-pparente/example/1 # try to list files again, nothing shows! hdfs.ls('/user/p-pparente/example') [] # remove the extended acl using the hdfs CLI # hdfs dfs -setfacl -x user:analytics /user/p-pparente/example/1 # list again, and still nothing there because the extended ACLs have been set at least once hdfs.ls('/user/p-pparente/example') [] # Remove the file from the directory entirely # hdfs dfs -rm /user/p-pparente/example/1 # list again, and now everything is fine once more hdfs.ls('/user/p-pparente/example') hdfs.ls('/user/p-pparente/example') ['/user/p-pparente/example/1', '/user/p-pparente/example/2'] {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)