Uh oh!
There was an error while loading. Please reload this page.
HBASE-27944:HStore.needsCompaction() should return false if we disable comapction against a table - #5303
HBASE-27944:HStore.needsCompaction() should return false if we disable comapction against a table#5303guluo2016 wants to merge 2 commits into
Conversation
Apache-HBase
commented
Jun 20, 2023
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jun 20, 2023
🎊 +1 overall
This message was automatically generated. |
Apache-HBase
commented
Jun 20, 2023
🎊 +1 overall
This message was automatically generated. |
Apache9
commented
Jun 23, 2023
Where do we call this method? Maybe at the caller place, we have already checked whether compaction is enabled at table level? |
guluo2016
commented
Jun 25, 2023
Yes, we indeed check checked whether compaction is enabled, for example The code : We will check whether compaction is enabled by calling
And this method would be called in these place. In here, I mean, since the main function of |
Apache9
commented
Jul 5, 2023
For me, I think different level has different checks, you do not need to do all the checks at every level. Here, if we always request compaction at region level from outside, it is not necessary to check whether we enable compaction at table level again, as we will check it at region level. |
guluo2016
commented
Jul 8, 2023
Thanks for your comments, I understand |

Details see:HBASE-27944