All, I am new and trying few hands on use cases. I have a file in hdfs and would want to load into impala table.
-- File location on hdfs : hdfs://xxx/user/hive/warehouse/impala_test
-- Table : CREATE TABLE impala_test_table (File_Format STRING ,Rank TINYINT, Splitable_ind STRING ) Row format delimited Fields terminated by '\,' STORED AS textfile;
-- Load syntax in impala-shell : Load data inpath 'hdfs://xxx/user/hive/warehouse/impala_test' into table impala_test_table; P.S : I am able to load it successfully with hive shell.
ERROR: AccessControlException: Permission denied by sticky bit: user=impala, path="/user/hive/warehouse/impala_test":uabc:hive:-rwxrwxrwx, parent="/user/hive/warehouse":hive:hive:drwxrwxrwt at ......
All permissions(777) are granted on the file impala_test. Any suggestions ? Thanks.