-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store only most recent blocks in cache (#7531)
* Store only most recent blocks in cache * Make join safe in test * Remove direct access from store values with abstract class and per-field package-private methods
- Loading branch information
Showing
8 changed files
with
211 additions
and
80 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
storage/src/main/java/tech/pegasys/teku/storage/store/CacheableStore.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,49 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2023 | ||
* | ||
* Licensed 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 tech.pegasys.teku.storage.store; | ||
|
||
import java.util.Collection; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
import java.util.function.Predicate; | ||
import org.apache.tuweni.bytes.Bytes32; | ||
import tech.pegasys.teku.infrastructure.unsigned.UInt64; | ||
import tech.pegasys.teku.spec.datastructures.blocks.BlockAndCheckpoints; | ||
import tech.pegasys.teku.spec.datastructures.blocks.SlotAndBlockRoot; | ||
import tech.pegasys.teku.spec.datastructures.blocks.StateAndBlockSummary; | ||
import tech.pegasys.teku.spec.datastructures.execution.SlotAndExecutionPayloadSummary; | ||
import tech.pegasys.teku.spec.datastructures.forkchoice.VoteTracker; | ||
|
||
/** Store extension dedicated to keep unsafe updates package-private */ | ||
public abstract class CacheableStore implements UpdatableStore { | ||
|
||
abstract void cacheTimeMillis(UInt64 timeMillis); | ||
|
||
abstract void cacheGenesisTime(UInt64 genesisTime); | ||
|
||
abstract void cacheProposerBoostRoot(Optional<Bytes32> proposerBoostRoot); | ||
|
||
abstract void cacheBlocks(Collection<BlockAndCheckpoints> blockAndCheckpoints); | ||
|
||
abstract void cacheStates(Map<Bytes32, StateAndBlockSummary> stateAndBlockSummaries); | ||
|
||
abstract void cacheFinalizedOptimisticTransitionPayload( | ||
Optional<SlotAndExecutionPayloadSummary> finalizedOptimisticTransitionPayload); | ||
|
||
abstract void cleanupCheckpointStates(Predicate<SlotAndBlockRoot> removalCondition); | ||
|
||
abstract void setHighestVotedValidatorIndex(UInt64 highestVotedValidatorIndex); | ||
|
||
abstract void setVote(int index, VoteTracker voteTracker); | ||
} |
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
Oops, something went wrong.