-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
feat: add ETL
to TxLookup
stage
#6655
Merged
Merged
Changes from 13 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
065303a
SnapshotProvider becomes wrapper to Arc<SnapshotProviderInner>
joshieDo 8002efd
make transaction_hashes_by_range on static files parallel
joshieDo da1d5d1
adjust sender recovery stage
joshieDo fe6b377
chunk_size for parallel work on recovery and hashing is 100
joshieDo 30fbfe9
remove testing code
joshieDo cdaf758
clippy
joshieDo 7f73631
add timing to stage run cli
joshieDo 7c1116f
clippy
joshieDo 44a4346
fix recovery tests
joshieDo 28086cf
further fixes
joshieDo 68fbd1c
add etl to tx-lookup
joshieDo b72d8f6
clippy
joshieDo 5933fff
Update bin/reth/src/commands/stage/run.rs
joshieDo ddaf070
Update bin/reth/src/commands/stage/run.rs
joshieDo eb690ed
call cursor directly
joshieDo 1e762df
change insert_blocks so it can insert to static and db
joshieDo 356a796
Merge branch 'joshie/concurrent-range-fetch' into joshie/txlookup-etl
joshieDo 9c50ed3
Update bin/reth/src/commands/stage/run.rs
joshieDo a849870
Update bin/reth/src/commands/stage/run.rs
joshieDo b74ef80
rename to snapshot provider
joshieDo b996229
add StorageKind to test_db
joshieDo f210db8
add derive_more::Display to StageEnum & set it to workspace on crates
joshieDo 3622355
Merge remote-tracking branch 'origin/feat/static-files' into joshie/c…
joshieDo e3fefdf
Merge branch 'joshie/concurrent-range-fetch' into joshie/txlookup-etl
joshieDo 3f3b5d0
make info log less wide
joshieDo 8f6d1b7
change transaction lookup logs
joshieDo a161d1e
use StorageKind on multiple tests
joshieDo d237c47
add StorageKind to more tests
joshieDo 5777768
fmt
joshieDo 84cbfe3
Merge branch 'joshie/concurrent-range-fetch' into joshie/txlookup-etl
joshieDo 475b974
fix is_static
joshieDo 8cf077c
Merge branch 'joshie/concurrent-range-fetch' into joshie/txlookup-etl
joshieDo b623a23
fix txlookup unwind
joshieDo 3edac90
Merge branch 'joshie/concurrent-range-fetch' into joshie/txlookup-etl
joshieDo 256278d
Merge branch 'feat/static-files' into joshie/txlookup-etl
joshieDo 916f9a7
remove intermediate commit test since it's no longer possible
joshieDo 0635507
clippy
joshieDo 8139630
rename commit_threshold to chunk_size
joshieDo cb2e1cc
Merge branch 'feat/static-files' into joshie/txlookup-etl
joshieDo bc4b921
Merge branch 'feat/static-files' into joshie/txlookup-etl
joshieDo f40565c
Merge branch 'feat/static-files' into joshie/txlookup-etl
joshieDo a9c09c7
update config and docs field name to chunk_size
joshieDo 5cca8f6
missing chunk_size change
joshieDo 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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.
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.
how large do we expect this to be?
we might not benefit from par sort here if not large, can do a length check and use par_sort if large if small buffers are possible
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.
given its only used on the pipeline, i'd say pretty large. Max at 100MB for headers, and 500MB worth for txlookup