HDINSIGHT hive, MSCK REPAIR TABLE table_name throwing error

前端 未结 1 965
时光说笑
时光说笑 2021-02-03 14:54

i have an external partitioned table named employee with partition(year,month,day), everyday a new file come and seat at the particular day location call for today\'s date it wi

1条回答
  •  逝去的感伤
    2021-02-03 15:27

    I got a workaround solution for my problem which is, if the table static partition name is like 'year=2016/month=10/day=13' then we can use below command and it is working...

    set hive.msck.path.validation=ignore;
    MSCK REPAIR TABLE table_name;
    

    0 讨论(0)
提交回复
热议问题