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 5D6E8200CAE for ; Wed, 7 Jun 2017 01:45:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5C491160BD3; Tue, 6 Jun 2017 23:45:23 +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 A4D21160BC6 for ; Wed, 7 Jun 2017 01:45:22 +0200 (CEST) Received: (qmail 75954 invoked by uid 500); 6 Jun 2017 23:45:21 -0000 Mailing-List: contact issues-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list issues@drill.apache.org Received: (qmail 75945 invoked by uid 99); 6 Jun 2017 23:45:21 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2017 23:45:21 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 657A4CFFD2 for ; Tue, 6 Jun 2017 23:45:21 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.011 X-Spam-Level: X-Spam-Status: No, score=-100.011 tagged_above=-999 required=6.31 tests=[SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id Ep4ufH5-LCLt for ; Tue, 6 Jun 2017 23:45:20 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id BE9BA5FD47 for ; Tue, 6 Jun 2017 23:45:19 +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 E5C91E036E for ; Tue, 6 Jun 2017 23:45:18 +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 5825421E0C for ; Tue, 6 Jun 2017 23:45:18 +0000 (UTC) Date: Tue, 6 Jun 2017 23:45:18 +0000 (UTC) From: "Paul Rogers (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DRILL-5572) Redundant user name property in AbstractBase, EasySubScan MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 06 Jun 2017 23:45:23 -0000 [ https://issues.apache.org/jira/browse/DRILL-5572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Rogers updated DRILL-5572: ------------------------------- Description: In Drill physical operators: {code} public abstract class AbstractBase implements PhysicalOperator { ... private final String userName; ... public AbstractBase(String userName) { this.userName = userName; } {code} But, most operators don't use the user name. Indeed, what does it mean to run a sort or filter as some user? The only operators that need a user name are those that read from, or write to the OS. So, rather than putting the name on the base class, and set it only for readers and writers, create a new intermediate class, `ImpersonatingOperator` that is the parent for operations that can impersonate another user. Further, if the entire query runs as a single user, the user name should be a property of the query. The only time we need per-operator user information is if we use view security: {code} SELECT a.x, a.y, b.m, b.n FROM a, b WHERE a.x = b.x {code} Here both a and b are views, and the access to the tables is specified by the owner of the view. This requires per-operator user name. But, the property should be "accessUser" since "userName" is too generic; it doesn't say which user is described. was: In Drill physical operators: > Redundant user name property in AbstractBase, EasySubScan > --------------------------------------------------------- > > Key: DRILL-5572 > URL: https://issues.apache.org/jira/browse/DRILL-5572 > Project: Apache Drill > Issue Type: Improvement > Affects Versions: 1.8.0 > Reporter: Paul Rogers > Priority: Minor > > In Drill physical operators: > {code} > public abstract class AbstractBase implements PhysicalOperator { > ... > private final String userName; > ... > public AbstractBase(String userName) { > this.userName = userName; > } > {code} > But, most operators don't use the user name. Indeed, what does it mean to run a sort or filter as some user? The only operators that need a user name are those that read from, or write to the OS. > So, rather than putting the name on the base class, and set it only for readers and writers, create a new intermediate class, `ImpersonatingOperator` that is the parent for operations that can impersonate another user. > Further, if the entire query runs as a single user, the user name should be a property of the query. The only time we need per-operator user information is if we use view security: > {code} > SELECT a.x, a.y, b.m, b.n FROM a, b WHERE a.x = b.x > {code} > Here both a and b are views, and the access to the tables is specified by the owner of the view. This requires per-operator user name. But, the property should be "accessUser" since "userName" is too generic; it doesn't say which user is described. -- This message was sent by Atlassian JIRA (v6.3.15#6346)