[
https://issues.apache.org/jira/browse/DRILL-8548?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18099876#comment-18099876
]
ASF GitHub Bot commented on DRILL-8548:
---------------------------------------
pjfanning commented on code in PR #3056:
URL: https://github.com/apache/drill/pull/3056#discussion_r3669819236
##########
drill-ranger/drill-ranger-plugin/pom.xml:
##########
@@ -0,0 +1,270 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.drill</groupId>
+ <artifactId>drill-ranger-parent</artifactId>
+ <version>1.23.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>drill-ranger-plugin</artifactId>
+ <name>Drill : Ranger Drill Authorization Plugin</name>
+ <description>
+ Apache Ranger authorization plugin for Apache Drill.
+ Loaded by the Drillbit at runtime; performs local in-memory policy
+ evaluation against policies pulled from Ranger Admin. Does NOT connect
+ to Drill and does NOT depend on drill-jdbc.
+ </description>
+
+ <properties>
+ <ranger.version>2.8.0</ranger.version>
+ <hadoop.version>3.3.4</hadoop.version>
+ </properties>
+
+ <dependencies>
+ <!
> Integrate Apache Ranger authorization for Drill
> -----------------------------------------------
>
> Key: DRILL-8548
> URL: https://issues.apache.org/jira/browse/DRILL-8548
> Project: Apache Drill
> Issue Type: New Feature
> Components: Server
> Affects Versions: 1.23.0
> Reporter: shihuafeng
> Priority: Major
> Fix For: 1.23.0
>
>
> This issue introduces Apache Ranger as a pluggable authorization framework
> for Drill, enabling centralized table-level and column-level access control
> for Drill queries. It is a substantial feature spanning three layers: a new
> drill-ranger module , integration hooks in exec/java-exec, and distribution
> packaging. The design follows Drill's existing AccessAuthorizer SPI and
> Calcite's RelShuttle mechanism so that column-level checks happen in the
> toRel phase before physical planning
--
This message was sent by Atlassian Jira
(v8.20.10#820010)