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

[fix][tiered-storage] Don't cleanup data when offload met Metastore exception #17512

Merged
merged 4 commits into from
Sep 14, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3004,8 +3004,19 @@ private void offloadLoop(CompletableFuture<PositionImpl> promise, Queue<LedgerIn
scheduledExecutor, name)
.whenComplete((ignore2, exception) -> {
if (exception != null) {
log.error("[{}] Failed to offload data for the ledgerId {}",
Throwable e = FutureUtil.unwrapCompletionException(exception);
if (e instanceof MetaStoreException) {
// When a MetaStore exception happens, we can not make sure the metadata
// update is failed or not. Because we have a retry on the connection loss,
// it is possible to get a BadVersion or other exception after retrying.
// So we don't clean up the data if it has metadata operation exception.
eolivelli marked this conversation as resolved.
Show resolved Hide resolved
log.error("[{}] Failed to update offloaded metadata for the ledgerId {}",
zymap marked this conversation as resolved.
Show resolved Hide resolved
name, ledgerId, exception);
return;
} else {
log.error("[{}] Failed to offload data for the ledgerId {}",
name, ledgerId, exception);
zymap marked this conversation as resolved.
Show resolved Hide resolved
}
cleanupOffloaded(
ledgerId, uuid,
driverName, driverMetadata,
Expand Down