-
Notifications
You must be signed in to change notification settings - Fork 205
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
Deep VM queries: deep-history observer vs. regular observer #6005
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
707530b
Remember latest queried epoch.
andreibancioiu 0bbe9df
Fix after review.
andreibancioiu e731ccb
Fix tests.
andreibancioiu 211beab
Fix condition for RecreateTrie.
andreibancioiu 952ccc8
- handled vm queries in snapshotless mode
iulianpascalau b39c59e
Merge branch 'vm-queries-remember-epoch' into vm-queries-remember-epo…
iulianpascalau d44648e
- fix after merge
iulianpascalau 7959088
Merge pull request #6007 from multiversx/vm-queries-remember-epoch-sn…
andreibancioiu d867f82
- refactored solution
iulianpascalau ca68006
Merge pull request #6008 from multiversx/vm-queries-remember-epoch-re…
iulianpascalau 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,6 @@ var logQueryService = logger.GetOrCreate("process/smartcontract.queryService") | |
|
||
// MaxGasLimitPerQuery - each unit is the equivalent of 1 nanosecond processing time | ||
const MaxGasLimitPerQuery = 300_000_000_000 | ||
const epochDifferenceToConsiderHistory = 2 | ||
|
||
// SCQueryService can execute Get functions over SC to fetch stored values | ||
type SCQueryService struct { | ||
|
@@ -53,6 +52,7 @@ type SCQueryService struct { | |
marshaller marshal.Marshalizer | ||
hasher hashing.Hasher | ||
uint64ByteSliceConverter typeConverters.Uint64ByteSliceConverter | ||
latestQueriedEpoch core.OptionalUint32 | ||
} | ||
|
||
// ArgsNewSCQueryService defines the arguments needed for the sc query service | ||
|
@@ -103,6 +103,7 @@ func NewSCQueryService( | |
marshaller: args.Marshaller, | ||
hasher: args.Hasher, | ||
uint64ByteSliceConverter: args.Uint64ByteSliceConverter, | ||
latestQueriedEpoch: core.OptionalUint32{}, | ||
}, nil | ||
} | ||
|
||
|
@@ -255,14 +256,36 @@ func (service *SCQueryService) recreateTrie(blockRootHash []byte, blockHeader da | |
} | ||
|
||
accountsAdapter := service.blockChainHook.GetAccountsAdapter() | ||
if blockHeader.GetEpoch()+epochDifferenceToConsiderHistory >= service.getCurrentEpoch() { | ||
|
||
if service.isLatestQueriedEpoch(blockHeader.GetEpoch()) { | ||
logQueryService.Trace("calling RecreateTrie, for recent history", "block", blockHeader.GetNonce(), "rootHash", blockRootHash) | ||
return accountsAdapter.RecreateTrie(blockRootHash) | ||
|
||
err := accountsAdapter.RecreateTrie(blockRootHash) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
service.rememberQueriedEpoch(blockHeader.GetEpoch()) | ||
} | ||
|
||
logQueryService.Trace("calling RecreateTrieFromEpoch, for older history", "block", blockHeader.GetNonce(), "rootHash", blockRootHash) | ||
holder := holders.NewRootHashHolder(blockRootHash, core.OptionalUint32{Value: blockHeader.GetEpoch(), HasValue: true}) | ||
return accountsAdapter.RecreateTrieFromEpoch(holder) | ||
|
||
err := accountsAdapter.RecreateTrieFromEpoch(holder) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
service.rememberQueriedEpoch(blockHeader.GetEpoch()) | ||
return err | ||
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.
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. Yes, fixed. |
||
} | ||
|
||
func (service *SCQueryService) isLatestQueriedEpoch(epoch uint32) bool { | ||
return service.latestQueriedEpoch.HasValue && service.latestQueriedEpoch.Value == epoch | ||
} | ||
|
||
func (service *SCQueryService) rememberQueriedEpoch(epoch uint32) { | ||
service.latestQueriedEpoch = core.OptionalUint32{Value: epoch, HasValue: true} | ||
} | ||
|
||
func (service *SCQueryService) getCurrentEpoch() uint32 { | ||
|
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.
missing return here?
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.
Indeed, fixed.