Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

MSCK REPAIR TABLE hangs when hdfs directories of the target table has more than certain number of sub-directories

avatar
New Contributor

Hello,

I installed HDP-2.5.3 recently and have an issue with MSCK REPAIR TABLE. I tried to migrate data from another cluster and created an external hive table on it. The command was successfully done with until 170 data directories and it was even very quick like 3 seconds. However, when I tried it with 190 or more data directories, it was hanging somewhere until I killed it in a few hours.

I looked at hivemetastore.log and found it didn't proceed any more after having called 'get_partitions'.

I tested it with data with much more directories like thousands in another cluster where HDP-2.4.X is installed and it worked without any problem. And 'get_partitions_with_auth' was called instead of 'get_partitions'. I compared their configs one by one in ambari but don't see any difference.

Does anyone have any ideas?

1 ACCEPTED SOLUTION

avatar
New Contributor

We checked out the hive code, removed the patch which was causing this issue ( top two commits affecting org/apache/hadoop/hive/ql/metadata/HiveMetaStoreChecker.java). This issue was resolved after that.

View solution in original post

12 REPLIES 12

avatar
@Donghoon Kang

add condition and give a try, I hope that will help you.

Ex:

alter table abc DROP PARTITION (date=>='2015-09-01');

avatar
New Contributor

Yeah, I tried it and it worked even though still didn't try it with more than 170 directories. However, I really need to use MSCK REPAIR TABLE instead of ALTER TABLE to add thousands of partitions at a time.

avatar
Rising Star

Can you take the "jstack" output of the hive cli from when it is stuck and share it here? Would be helpful if you could share hive.log as well.

avatar
New Contributor

Hi,

Facing the same issue with MSCK REPAIR TABLE after migrating to HDP-2.5.3. Anyone had luck with a workaround?

Thanks in advance!

avatar
Expert Contributor
@Donghoon Kang

I am facing same issue after upgrading to 2.5.3 from 2.4.2..did anybody find a solution?

avatar
Expert Contributor
@Madan Gudi

I am facing same issue after upgrading to 2.5.3 from 2.4.2..did anybody find a solution?

avatar
New Contributor

We checked out the hive code, removed the patch which was causing this issue ( top two commits affecting org/apache/hadoop/hive/ql/metadata/HiveMetaStoreChecker.java). This issue was resolved after that.

avatar
Contributor

Can you please suggest the change that you have done?

avatar
Rising Star

Can you please check if "hive.mv.files.thread=0" helps in this case?