欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Exception in thread "main" org.apache.spark.SparkException: Application application_1498149692663_01

程序员文章站 2022-06-01 15:02:56
...

最近在往hive分区表中导入数据时,遇见一个问题,就是虽然数据可以导入到hive分区表中,但是总是会报下面这个错误
Exception in thread "main" org.apache.spark.SparkException: Application application_1498149692663_01

我导入数据所使用的方式为:

alter table c3data.contentview add partition (year=2017,month=04,day=30,platform='Others') location '/user/cxfgs/c3/output/contentView/Hive/2017/04/30/Others/';

经过多次试验,发现原来是分区已经存在,在再次导入的时候便会报下列错误。要想让这个错误不在出现,则在导入数据的时候先删除原来的数据。

alter table c3data.contentview drop  if exists  partition (year=2017,month=04,day=30,platform='Others') ;