Hadoop Hive unable to move source to destination

前端 未结 5 860
不知归路
不知归路 2020-12-16 06:52

I am trying to use Hive 1.2.0 over Hadoop 2.6.0. I have created an employee table. However, when I run the following query:

hive> load data l         


        
5条回答
  •  既然无缘
    2020-12-16 07:12

    As mentioned by Rio, the issue involved lack of permissions to load data into hive table. I figures out the following command solves my problems:

    hadoop fs -chmod g+w /user/hive/warehouse
    

提交回复
热议问题