Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhancement] Delete garbage data throught recycle bin after truncate table in share data mode #49975

Merged
merged 3 commits into from
Aug 29, 2024

Conversation

srlch
Copy link
Contributor

@srlch srlch commented Aug 19, 2024

Using recycle bin to delete file after truncate table which is more faster than using StarMgrMetaSyncer

Why I'm doing:

What I'm doing:

Fixes #issue

What type of PR is this:

  • BugFix
  • Feature
  • Enhancement
  • Refactor
  • UT
  • Doc
  • Tool

Does this PR entail a change in behavior?

  • Yes, this PR will result in a change in behavior.
  • No, this PR will not result in a change in behavior.

If yes, please specify the type of change:

  • Interface/UI changes: syntax, type conversion, expression evaluation, display information
  • Parameter changes: default values, similar parameters but with different default values
  • Policy changes: use new policy to replace old one, functionality automatically enabled
  • Feature removed
  • Miscellaneous: upgrade & downgrade compatibility, etc.

Checklist:

  • I have added test cases for my bug fix or my new feature
  • This pr needs user documentation (for new or modified features or behaviors)
    • I have added documentation for my new feature or new function
  • This is a backport pr

Bugfix cherry-pick branch check:

  • I have checked the version labels which the pr will be auto-backported to the target branch
    • 3.3
    • 3.2
    • 3.1
    • 3.0
    • 2.5

@srlch srlch requested a review from a team as a code owner August 19, 2024 09:33
@mergify mergify bot assigned srlch Aug 19, 2024
@github-actions github-actions bot added the 3.3 label Aug 19, 2024
Comment on lines 163 to 166
try {
GlobalStateMgr.getCurrentState().getRecycleBin().erasePartition(Long.MAX_VALUE);
} catch (Exception ignore) {
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
try {
GlobalStateMgr.getCurrentState().getRecycleBin().erasePartition(Long.MAX_VALUE);
} catch (Exception ignore) {
}
ExceptionChecker.expectThrowsNoException(() -> GlobalStateMgr.getCurrentState().getRecycleBin().erasePartition(Long.MAX_VALUE);

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

@@ -902,6 +902,11 @@ protected void runAfterCatalogReady() {
}
}

@VisibleForTesting
public synchronized boolean isContainedInidToRecycleTime(long id) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public synchronized boolean isContainedInidToRecycleTime(long id) {
synchronized boolean isContainedInidToRecycleTime(long id) {

remove the access identifier, so the interface can be accessible from the same package, but not visible outside the package, which can be a workaround to allow UT accessing.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

// For cloud native table, add partition into recycle Bin after truncate table.
// It is no necessary for share nothing mode because file will be deleted throught
// tablet report in this case.
if (this.isCloudNativeTable()) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shall be applicable to shared-data materialized view as well?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

Comment on lines 177 to 204
new Expectations() {
{
GlobalStateMgr.getCurrentState().getWarehouseMgr();
minTimes = 0;
result = warehouseManager;
}
};

new MockUp<GlobalStateMgr>() {
@Mock
public StarOSAgent getStarOSAgent() {
return starOSAgent;
}
};

new MockUp<StarOSAgent>() {
@Mock
public ShardInfo getShardInfo(long shardId, long workerGroupId) throws StarClientException {
return shardInfo;
}
};

new MockUp<WarehouseManager>() {
@Mock
public Warehouse getBackgroundWarehouse() {
return new DefaultWarehouse(WarehouseManager.DEFAULT_WAREHOUSE_ID, WarehouseManager.DEFAULT_WAREHOUSE_NAME);
}
};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

check if possible set these common expectations in a function and call the function to set MockUp/Expectations repeatedly.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

… table in share data mode

Using recycle bin to delete file after truncate table which is more faster than using StarMgrMetaSyncer

Signed-off-by: srlch <[email protected]>
Signed-off-by: srlch <[email protected]>
Signed-off-by: srlch <[email protected]>
Copy link

sonarcloud bot commented Aug 29, 2024

Copy link

[Java-Extensions Incremental Coverage Report]

pass : 0 / 0 (0%)

Copy link

[FE Incremental Coverage Report]

pass : 5 / 5 (100.00%)

file detail

path covered_line new_line coverage not_covered_line_detail
🔵 com/starrocks/catalog/CatalogRecycleBin.java 1 1 100.00% []
🔵 com/starrocks/catalog/OlapTable.java 4 4 100.00% []

Copy link

[BE Incremental Coverage Report]

pass : 0 / 0 (0%)

@andyziye andyziye merged commit 5c03743 into StarRocks:main Aug 29, 2024
49 checks passed
Copy link

@Mergifyio backport branch-3.3

@github-actions github-actions bot removed the 3.3 label Aug 29, 2024
Copy link
Contributor

mergify bot commented Aug 29, 2024

backport branch-3.3

✅ Backports have been created

mergify bot pushed a commit that referenced this pull request Aug 29, 2024
… table in share data mode (#49975)

Signed-off-by: srlch <[email protected]>
(cherry picked from commit 5c03743)
wanpengfei-git pushed a commit that referenced this pull request Sep 6, 2024
… table in share data mode (backport #49975) (#50418)

Co-authored-by: srlch <[email protected]>
xiangguangyxg pushed a commit to xiangguangyxg/starrocks that referenced this pull request Sep 6, 2024
va-os-commits pushed a commit to va-os-commits/starrocks that referenced this pull request Sep 10, 2024
renzhimin7 pushed a commit to renzhimin7/starrocks that referenced this pull request Nov 7, 2024
… table in share data mode (StarRocks#49975)

Signed-off-by: srlch <[email protected]>
Signed-off-by: zhiminr.ren <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants