Aggarwal-Raghav commented on PR #6608: URL: https://github.com/apache/hive/pull/6608#issuecomment-4978824385
I'm guessing the spark written partition are also contributing to this issue. Sample repro on cluster: ``` create table bug (id int) partitioned by (country string); alter table bug add partition (country='ABC'); desc formatted bug; -- gave location hdfs://namenode:8020/ desc formatted bug partition(country='ABC'); alter table bug partition (country='ABC') SET LOCATION 'hdfs://namenode/...../'; -- So removed :8020 msck repair table bug; ``` NOTE, ensure `hdfs dfs -ls hdfs://namenode/path to table/` and `hdfs://namenode:8020/path to table/` both are working in your cluster. In localhost (my local mac setup) it was not working for me **but on VM/cluster it was repro-ing** -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
