Details
Description
Steps :
In spark Beeline user executes the following queries.
drop database if exists test_db1 cascade;
create database test_db1 location 'hdfs://hacluster/user/test1';
use test_db1;
create table if not exists ORDERS(O_ORDERDATE string,O_ORDERPRIORITY string,O_ORDERSTATUS string,O_ORDERKEY string,O_CUSTKEY string,O_TOTALPRICE double,O_CLERK string,O_SHIPPRIORITY int,O_COMMENT string) STORED BY 'org.apache.carbondata.format'TBLPROPERTIES ('table_blocksize'='128');
User checks the permission of the created database and table in carbon store using the bin/hadoop fs -getfacl command.
Issue : The Permission of created table and database folder in carbon store not correct. i.e
- file: /user/test1/orders
- owner: anonymous
- group: users
user::rwx
group::r-x
other::r-x
Expected : Correct permissions for the created table and database folder in carbon store should be
- file: /user/test1/orders
- owner: anonymous
- group: users
user::rwx
group::---
other::---