-
Notifications
You must be signed in to change notification settings - Fork 166
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
GH-5148 Introduce "soft fail" for corrupt ValueStore #5150
Merged
hmottestad
merged 2 commits into
eclipse-rdf4j:GH-5148-soft-fail-native-store
from
ebner:GH-5148-handle-corrupt-data
Oct 23, 2024
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
91 changes: 91 additions & 0 deletions
91
core/sail/nativerdf/src/main/java/org/eclipse/rdf4j/sail/nativerdf/model/CorruptValue.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,91 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Eclipse RDF4J contributors, Aduna, and others. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is an old copyright header. See https://github.com/eclipse-rdf4j/rdf4j/blob/main/CONTRIBUTING.md#code-formatting |
||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Distribution License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*******************************************************************************/ | ||
package org.eclipse.rdf4j.sail.nativerdf.model; | ||
|
||
import org.eclipse.rdf4j.sail.nativerdf.ValueStoreRevision; | ||
|
||
/** | ||
* CorruptValue is used when a NativeValue cannot be read from the ValueStore and if soft failure is enabled (see | ||
* ValueStore#softFailOnCorruptData). | ||
* | ||
* There is no method isCorruptValue() as it would exist for a "regular" implementation of NativeValue. Since | ||
* CorruptValue is only to be used in exceptional situations, the recommended way of checking for it is using | ||
* "instanceof". | ||
* | ||
* @author Hannes Ebner | ||
*/ | ||
public class CorruptValue implements NativeValue { | ||
|
||
/*-----------* | ||
* Constants * | ||
*-----------*/ | ||
|
||
private static final long serialVersionUID = 8829067881854394802L; | ||
hmottestad marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
/*----------* | ||
* Variables * | ||
*----------*/ | ||
|
||
private volatile ValueStoreRevision revision; | ||
|
||
private volatile int internalID; | ||
|
||
/*--------------* | ||
* Constructors * | ||
*--------------*/ | ||
|
||
public CorruptValue(ValueStoreRevision revision, int internalID) { | ||
setInternalID(internalID, revision); | ||
} | ||
|
||
/*---------* | ||
* Methods * | ||
*---------*/ | ||
|
||
@Override | ||
public void setInternalID(int internalID, ValueStoreRevision revision) { | ||
this.internalID = internalID; | ||
this.revision = revision; | ||
} | ||
|
||
@Override | ||
public ValueStoreRevision getValueStoreRevision() { | ||
return revision; | ||
} | ||
|
||
@Override | ||
public int getInternalID() { | ||
return internalID; | ||
} | ||
|
||
public String stringValue() { | ||
return Integer.toString(internalID); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
|
||
if (o instanceof CorruptValue && internalID != NativeValue.UNKNOWN_ID) { | ||
CorruptValue otherCorruptValue = (CorruptValue) o; | ||
|
||
if (otherCorruptValue.internalID != NativeValue.UNKNOWN_ID && revision.equals(otherCorruptValue.revision)) { | ||
// CorruptValue is from the same revision of the same native store with both IDs set | ||
return internalID == otherCorruptValue.internalID; | ||
} | ||
} | ||
|
||
return super.equals(o); | ||
} | ||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could potentially include data[0] at this point.