This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Solana sign online #23
Open
lebdron
wants to merge
41
commits into
NatoliChris:develop
Choose a base branch
from
lebdron:solana-sign-online
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Get the nonces for each accounts from the blockchain in a parallel fashion instead of sequentially. This leads to faster benchmark initialization when there are a lot of accounts.
Algorand secondaries were sending transactions sequentially. This leads Diablo to not submit the correct workload when the client side of the blockchain is slow. Now each transaction is sent in a separated goroutine.
Updated go files.
Add a quickfix so the algorand secodaries do not crash if they are asked to access a blockchain node that they do not know.
Force diablo secondaries to spread load on the blockchain nodes they know in a round robin fashion.
Do not add timeout add the end of an experiment.
Make Diablo secondaries run even if they only have a partial view of the blockchain i.e. they know only a fraction of the blockchain nodes known by the diablo primary.
The diablo secondary was constraining the endpoint to be lesser than blockchain.population() instead of blockchain.size(). It was a nonsense leading to segfault. Now it constrains it with blockchain.size().
Add structures for transaction between primary and secondary for Diem.
Add config parsing and getter for diem related config.
Add a blockchain object as a proxy to interact with the actual blockchain.
Add the Diem controller to generate workload.
Add Diem related worker to send workload and collect events.
Make the Diem blockchain available to use in Diablo.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
What issue # is this merge request related to?
(Provide the issue number, or, the link to the issue)
Overview of merge request
(Provide an overview of the merge request)
Proposed Changes
(What files does this add/remove/change, and how? Brief summary)
Additional information
(Please provide any additional information. For example, future considerations or information useful for reviewers.)