Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
506 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.internal.causality; | ||
|
||
import org.apache.ignite.lang.IgniteInternalCheckedException; | ||
import org.apache.ignite.lang.IgniteStringFormatter; | ||
|
||
/** | ||
* This exception is thrown when {@link VersionedValue#get(long)} is called with an outdated token | ||
* (this means that the history size of VersionedValue is not enough in order to get a value related to the token). | ||
* | ||
* <p>{@link VersionedValue} stores a value per the causality token. | ||
* See {@link VersionedValue#get(long)}. | ||
*/ | ||
public class OutdatedTokenException extends IgniteInternalCheckedException { | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param outdatedToken The token which has expired. | ||
* @param actualToken Token for the actual stored value. | ||
* @param historySize Size of stored history. | ||
*/ | ||
public OutdatedTokenException(long outdatedToken, long actualToken, int historySize) { | ||
super(IgniteStringFormatter.format("Token expired [token={}, actualToken={}, historySize={}]", outdatedToken, | ||
actualToken, historySize)); | ||
} | ||
} |
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,265 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.internal.causality; | ||
|
||
import java.util.Map.Entry; | ||
import java.util.concurrent.CompletableFuture; | ||
import java.util.concurrent.ConcurrentNavigableMap; | ||
import java.util.concurrent.ConcurrentSkipListMap; | ||
import java.util.concurrent.locks.ReadWriteLock; | ||
import java.util.concurrent.locks.ReentrantReadWriteLock; | ||
import java.util.function.BiConsumer; | ||
import java.util.function.Consumer; | ||
import org.apache.ignite.lang.IgniteStringFormatter; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
/** | ||
* Parametrized type to store several versions of the value. | ||
* A value can be available through the causality token, which is represented by long. | ||
* | ||
* @param <T> Type of real value. | ||
*/ | ||
public class VersionedValue<T> { | ||
/** Last applied casualty token. */ | ||
private volatile long actualToken; | ||
|
||
/** Size of stored history. */ | ||
private final int historySize; | ||
|
||
/** Closure applied on storage revision update. */ | ||
private final BiConsumer<VersionedValue<T>, Long> storageRevisionUpdating; | ||
|
||
/** Versioned value storage. */ | ||
private final ConcurrentNavigableMap<Long, CompletableFuture<T>> history = new ConcurrentSkipListMap<>(); | ||
|
||
/** | ||
* This lock guarantees that the history is not trimming {@link #trimToSize(long)} during getting a value from versioned storage {@link | ||
* #get(long)}. | ||
*/ | ||
private final ReadWriteLock trimHistoryLock = new ReentrantReadWriteLock(); | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param storageRevisionUpdating Closure applied on storage revision update (see {@link #onStorageRevisionUpdate(long)}). | ||
* @param observableRevisionUpdater A closure intended to connect this VersionedValue with a revision updater, that this VersionedValue | ||
* should be able to listen to, for receiving storage revision updates. This closure is called once on | ||
* a construction of this VersionedValue and accepts a {@code Consumer<Long>} that should be called | ||
* on every update of storage revision as a listener. IMPORTANT: Revision update shouldn't happen | ||
* concurrently with {@link #set(long, T)} operations. | ||
* @param historySize Size of the history of changes to store, including last applied token. | ||
*/ | ||
public VersionedValue( | ||
@Nullable BiConsumer<VersionedValue<T>, Long> storageRevisionUpdating, | ||
Consumer<Consumer<Long>> observableRevisionUpdater, | ||
int historySize | ||
) { | ||
this.storageRevisionUpdating = storageRevisionUpdating; | ||
|
||
observableRevisionUpdater.accept(this::onStorageRevisionUpdate); | ||
|
||
this.historySize = historySize; | ||
} | ||
|
||
/** | ||
* Constructor with default history size that equals 2. See {@link #VersionedValue(BiConsumer, Consumer, int)}. | ||
* | ||
* @param storageRevisionUpdating Closure applied on storage revision update (see {@link #onStorageRevisionUpdate(long)}. | ||
* @param observableRevisionUpdater A closure intended to connect this VersionedValue with a revision updater, that this VersionedValue | ||
* should be able to listen to, for receiving storage revision updates. This closure is called once on | ||
* a construction of this VersionedValue and accepts a {@code Consumer<Long>} that should be called | ||
* on every update of storage revision as a listener. IMPORTANT: Revision update shouldn't happen | ||
* concurrently with {@link #set(long, T)} operations. | ||
*/ | ||
public VersionedValue( | ||
@Nullable BiConsumer<VersionedValue<T>, Long> storageRevisionUpdating, | ||
Consumer<Consumer<Long>> observableRevisionUpdater | ||
) { | ||
this(storageRevisionUpdating, observableRevisionUpdater, 2); | ||
} | ||
|
||
/** | ||
* Constructor with default history size that equals 2 and no closure. See {@link #VersionedValue(BiConsumer, Consumer, int)}. | ||
* | ||
* @param observableRevisionUpdater A closure intended to connect this VersionedValue with a revision updater, that this VersionedValue | ||
* should be able to listen to, for receiving storage revision updates. This closure is called once on | ||
* a construction of this VersionedValue and accepts a {@code Consumer<Long>} that should be called | ||
* on every update of storage revision as a listener. IMPORTANT: Revision update shouldn't happen | ||
* concurrently with {@link #set(long, T)} operations. | ||
*/ | ||
public VersionedValue(Consumer<Consumer<Long>> observableRevisionUpdater) { | ||
this(null, observableRevisionUpdater); | ||
} | ||
|
||
/** | ||
* Creates a future for this value and causality token, or returns it if it already exists. | ||
* | ||
* <p>The returned future is associated with an update having the given causality token and completes when this update is finished | ||
* applying. | ||
* | ||
* @param causalityToken Causality token. Let's assume that the update associated with token N is already applied to this value. Then, | ||
* if token N is given as an argument, a completed future will be returned. If token N - 1 is given, this method | ||
* returns the result in the state that is actual for the given token. If the token is strongly outdated, {@link | ||
* OutdatedTokenException} is thrown. If token N + 1 is given, this method will return a future that will be | ||
* completed when the update associated with token N + 1 will have been applied. Tokens that greater than N by | ||
* more than 1 should never be passed. | ||
* @return The future. | ||
* @throws OutdatedTokenException If outdated token is passed as an argument. | ||
*/ | ||
public CompletableFuture<T> get(long causalityToken) throws OutdatedTokenException { | ||
if (causalityToken <= actualToken) { | ||
return getValueForPreviousToken(causalityToken); | ||
} | ||
|
||
trimHistoryLock.readLock().lock(); | ||
|
||
try { | ||
if (causalityToken <= actualToken) { | ||
return getValueForPreviousToken(causalityToken); | ||
} | ||
|
||
var fut = new CompletableFuture<T>(); | ||
|
||
CompletableFuture<T> previousFut = history.putIfAbsent(causalityToken, fut); | ||
|
||
return previousFut == null ? fut : previousFut; | ||
} finally { | ||
trimHistoryLock.readLock().unlock(); | ||
} | ||
|
||
} | ||
|
||
/** | ||
* Gets a value for less or equal token than the actual {@link #actualToken}. | ||
* | ||
* @param causalityToken Causality token. | ||
* @return A completed future that contained a value. | ||
* @throws OutdatedTokenException If outdated token is passed as an argument. | ||
*/ | ||
private CompletableFuture<T> getValueForPreviousToken(long causalityToken) throws OutdatedTokenException { | ||
Entry<Long, CompletableFuture<T>> histEntry = history.floorEntry(causalityToken); | ||
|
||
if (histEntry == null) { | ||
throw new OutdatedTokenException(causalityToken, actualToken, historySize); | ||
} | ||
|
||
return histEntry.getValue(); | ||
} | ||
|
||
/** | ||
* Save the version of the value associated with the given causality token. If someone has got a future to await the value associated | ||
* with the given causality token (see {@link #get(long)}, then the future will be completed. | ||
* | ||
* @param causalityToken Causality token. | ||
* @param value Current value. | ||
*/ | ||
public void set(long causalityToken, T value) { | ||
long actualToken0 = actualToken; | ||
|
||
assert actualToken0 + 1 == causalityToken : IgniteStringFormatter.format("Token must be greater than actual by exactly 1 " | ||
+ "[token={}, actual={}]", causalityToken, actualToken0); | ||
|
||
CompletableFuture<T> res = history.putIfAbsent(causalityToken, CompletableFuture.completedFuture(value)); | ||
|
||
if (res == null || res.isCompletedExceptionally()) { | ||
return; | ||
} | ||
|
||
assert !res.isDone() : IgniteStringFormatter.format("Different values associated with the token " | ||
+ "[token={}, value={}, prevValue={}]", causalityToken, value, res.join()); | ||
|
||
res.complete(value); | ||
} | ||
|
||
/** | ||
* Should be called on a storage revision update. This also triggers completion of a future created for the given causality token. It | ||
* implies that all possible updates associated with this token have been already applied to the component. | ||
* | ||
* @param causalityToken Causality token. | ||
*/ | ||
private void onStorageRevisionUpdate(long causalityToken) { | ||
long actualToken0 = actualToken; | ||
|
||
assert causalityToken > actualToken0 : IgniteStringFormatter.format( | ||
"New token should be greater than current [current={}, new={}]", actualToken0, causalityToken); | ||
|
||
if (storageRevisionUpdating != null) { | ||
storageRevisionUpdating.accept(this, causalityToken); | ||
} | ||
|
||
completeRelatedFuture(causalityToken); | ||
|
||
if (history.size() > 1 && causalityToken - history.firstKey() >= historySize) { | ||
trimToSize(causalityToken); | ||
} | ||
|
||
Entry<Long, CompletableFuture<T>> entry = history.floorEntry(causalityToken); | ||
|
||
assert entry != null && entry.getValue().isDone() : IgniteStringFormatter.format( | ||
"Future for the token is not completed [token={}]", causalityToken); | ||
|
||
actualToken = causalityToken; | ||
} | ||
|
||
/** | ||
* Completes a future related with a specific causality token. | ||
* | ||
* @param causalityToken The token which is becoming an actual. | ||
*/ | ||
private void completeRelatedFuture(long causalityToken) { | ||
Entry<Long, CompletableFuture<T>> entry = history.floorEntry(causalityToken); | ||
|
||
assert entry != null : IgniteStringFormatter.format("No future for token [token={}]", causalityToken); | ||
|
||
if (!entry.getValue().isDone()) { | ||
Entry<Long, CompletableFuture<T>> entryBefore = history.headMap(causalityToken).lastEntry(); | ||
|
||
assert entryBefore != null && entryBefore.getValue().isDone() : IgniteStringFormatter.format( | ||
"No future for token [token={}]", causalityToken); | ||
|
||
entryBefore.getValue().whenComplete((t, throwable) -> { | ||
if (throwable != null) { | ||
entry.getValue().completeExceptionally(throwable); | ||
} else { | ||
entry.getValue().complete(t); | ||
} | ||
}); | ||
} | ||
} | ||
|
||
/** | ||
* Trims the storage to history size. | ||
* | ||
* @param causalityToken Last token which is being applied. | ||
*/ | ||
private void trimToSize(long causalityToken) { | ||
Long lastToken = history.lastKey(); | ||
|
||
trimHistoryLock.writeLock().lock(); | ||
|
||
try { | ||
for (Long token : history.keySet()) { | ||
if (token != lastToken && causalityToken - token >= historySize) { | ||
history.remove(token); | ||
} | ||
} | ||
} finally { | ||
trimHistoryLock.writeLock().unlock(); | ||
} | ||
} | ||
} |
Oops, something went wrong.