-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the local cache fallback behavior for corrupted pages
### What changes are proposed in this pull request? Throw a PageCorruptedException when the length of page inconsistent with the metadata Do our best efforts to delete the corrupted page file Reset the offset of buffer when we found the data has been corrupted to avoid ArrayOutOfBound exception. ### Why are the changes needed? We found the cache make presto keep failing when some of the page file got corrupted ### Does this PR introduce any user facing changes? No pr-link: #18498 change-id: cid-9012c5432e2b979f8242f3b247deed94b501d194
- Loading branch information
Showing
9 changed files
with
150 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
dora/core/common/src/main/java/alluxio/exception/PageCorruptedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 | ||
* (the "License"). You may not use this work except in compliance with the License, which is | ||
* available at www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
* either express or implied, as more fully set forth in the License. | ||
* | ||
* See the NOTICE file distributed with this work for information regarding copyright ownership. | ||
*/ | ||
|
||
package alluxio.exception; | ||
|
||
/** | ||
* An exception that should be thrown when the data of a page has been corrupted in store. | ||
*/ | ||
public class PageCorruptedException extends RuntimeException { | ||
|
||
/** | ||
* Construct PageCorruptedException with the specified message. | ||
* @param message | ||
*/ | ||
public PageCorruptedException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* Construct PageCorruptedException with the specified message and cause. | ||
* @param message | ||
* @param cause | ||
*/ | ||
public PageCorruptedException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |