Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.1.2
-
None
-
None
-
Hive-3.1.1
Description
user may run into the issue if the table consists of all base files but no delta, then the following condition will yield false and automatic major compaction will be skipped.
Steps to Reproduce:
- create Acid table
// create table myacid(id int);
- Run multiple insert table
// insert overwrite table myacid values(1);insert overwrite table myacid values(2),(3),(4)
- DFS ls output
// dfs -ls -R /warehouse/tablespace/managed/hive/myacid; +----------------------------------------------------+ | DFS Output | +----------------------------------------------------+ | drwxrwx---+ - hive hadoop 0 2019-09-27 16:42 /warehouse/tablespace/managed/hive/myacid/base_0000001 | | -rw-rw----+ 3 hive hadoop 1 2019-09-27 16:42 /warehouse/tablespace/managed/hive/myacid/base_0000001/_orc_acid_version | | -rw-rw----+ 3 hive hadoop 610 2019-09-27 16:42 /warehouse/tablespace/managed/hive/myacid/base_0000001/bucket_00000 | | drwxrwx---+ - hive hadoop 0 2019-09-27 16:43 /warehouse/tablespace/managed/hive/myacid/base_0000002 | | -rw-rw----+ 3 hive hadoop 1 2019-09-27 16:43 /warehouse/tablespace/managed/hive/myacid/base_0000002/_orc_acid_version | | -rw-rw----+ 3 hive hadoop 633 2019-09-27 16:43 /warehouse/tablespace/managed/hive/myacid/base_0000002/bucket_00000 | +----------------------------------------------------+
you will see that Major compaction will not be trigger until you run alter table compact MAJOR.
Attachments
Attachments
Issue Links
- links to