简体   繁体   English

HiveAccessControlException 权限被拒绝:用户 [hive] 在 [hdfs://sandbox-....:8020/user/..] 上没有 [ALL] 权限(状态=42000,代码=40000)

[英]HiveAccessControlException Permission denied: user [hive] does not have [ALL] privilege on [hdfs://sandbox-....:8020/user/..] (state=42000,code=40000)

When I'm trying to load a CSV file from local hadoop on sandbox to hive table, I'm getting the following exception当我尝试将 CSV 文件从沙盒上的本地 hadoop 加载到 hive 表时,出现以下异常

LOCATION 'hdfs://sandbox-hdp.hortonworks.com:8020/user/maria_dev/practice';                                                                 
Error: Error while compiling statement: FAILED: HiveAccessControlException Permission denied: user [hive] does not have [ALL] privilege on [hdfs://sandbox-hdp.hortonworks.com:8020/user/ma
ria_dev/practice] (state=42000,code=40000)       

I used the following code, can you please suggest a solution for this?我使用了以下代码,您能提出解决方案吗?

CREATE TABLE Sales_transactions(
Transaction_date DATE,
Product STRING,
Price FLOAT,
Payment_Type STRING,
Name STRING,
City STRING,
State STRING,
Country STRING,
Account_Created TIMESTAMP,
Last_Login TIMESTAMP,
Latitude FLOAT,
Longitude FLOAT,
Zip STRING
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY ','
STORED AS TEXTFILE
**LOCATION 'hdfs://sandbox-hdp.hortonworks.com:8020/user/maria_dev/practice';** //Error pointing this line.

It is actually two step process and i think you missed step1.(Assuming your user have all proper access.)这实际上是两步过程,我认为您错过了第 1 步。(假设您的用户具有所有适当的访问权限。)
Step 1 - Load local file into hdfs file system.步骤 1 - 将本地文件加载到 hdfs 文件系统中。

hdfs dfs -put /~/Sales_transactions.csv hdfs://sandbox-hdp.hortonworks.com:8020/user/maria_dev/practice`  

Step 2 - Then load above hdfs data into the table.第 2 步 - 然后将上述 hdfs 数据加载到表中。

load data inpath 'hdfs://sandbox-hdp.hortonworks.com:8020/user/maria_dev/practice/Sales_transactions.csv' into table myDB.Sales_transactions_table

Alternately you can use this as well -或者,您也可以使用它 -

LOAD DATA LOCAL INPATH '/~/Sales_transactions.csv' INTO TABLE mydb.Sales_transactions_table;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM