-
Notifications
You must be signed in to change notification settings - Fork 111
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
add(state): Track spending transaction ids by spent outpoints and revealed nullifiers #8895
base: main
Are you sure you want to change the base?
Conversation
zebra-state/src/service/finalized_state/disk_format/upgrade/track_tx_locs_by_spends.rs
Outdated
Show resolved
Hide resolved
Added a |
fd2bcca
to
f6faf42
Compare
@mpguerra It looks like it's actually not using much storage space, I was looking at the db metrics printed at startup which were about double the expected storage requirements prior to the change, but the total size of the state cache directory is about the same as it was before, so I think the db metrics are overestimating the total db size. I checked the number of keys by column family, and by height 2M on Mainnet, it's ~10M transparent outputs and ~150M nullifiers in total, not all of which are spent. It's 10B per spent transparent output and 5 bytes per nullifier, so it should be, at most, ~1GB of additional storage requirements by block 2M. I'll update this comment with the number of nullifiers and transparent outputs at the network chain tip once my node finishes syncing, but it's looking like hiding this behind a feature may have been unnecessary.
Update: At the current network chain tip, it's about 6.2GB of extra data (5.5gb + 140M * 5B), also it's 14B per spent transparent output, not 10B (I had forgot about the output index). 6.2GB doesn't seem excessive, but we could use the feature later if/when caching blocks in their compact format. Relevant Column Family Sizessprout_nullifiers (Disk: 146.7 MB, Memory: 9.4 MB, num_keys: Some(1663236))
sapling_nullifiers (Disk: 230 MB, Memory: 4.2 MB, num_keys: Some(3068534))
orchard_nullifiers (Disk: 6.3 GB, Memory: 55.1 MB, num_keys: Some(134798732))
tx_loc_by_spent_out_loc (Disk: 5.5 GB, Memory: 6.3 MB, num_keys: Some(316786532)) |
Test failure is unrelated, should be fixed now. |
1ed1c45
to
bf37b97
Compare
…a read method and an update to `prepare_spending_transparent_tx_ids_batch()` for maintaining it when committing blocks to the finalized state. Adds TODOs for remaining production changes needed for issue #8837.
…Id` ReadResponse
@oxarbitrage do you mind reviewing this one as you reviewed it previously? |
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.
keeps looking good to me.
This pull request has been removed from the queue for the following reason: The merge conditions cannot be satisfied due to failing checks:
You should look at the reason for the failure and decide if the pull request needs to be fixed or if you want to requeue it. If you want to requeue this pull request, you need to post a comment with the text: |
@mergify requeue |
✅ The queue state of this pull request has been cleaned. It can be re-embarked automatically |
This pull request has been removed from the queue for the following reason: The merge conditions cannot be satisfied due to failing checks:
You should look at the reason for the failure and decide if the pull request needs to be fixed or if you want to requeue it. If you want to requeue this pull request, you need to post a comment with the text: |
Motivation
We want to lookup transaction ids by their transparent inputs and revealed nullifiers.
Closes #8837,
Closes #8838.
Closes #8922.
Solution
tx_loc_by_spent_out_loc
column family()
TransactionLocation
of spending transactions by spentOutputLocation
s and nullifiers when writing blocks to the finalized statespent_utxos
field on non-finalizedChain
sReadRequest
andReadResponse
variants for querying spending tx ids by outpoint with theReadStateService
spending_transaction_hash()
read function used to handle the newReadRequest
It may be possible to update the
tx_loc_by_transparent_addr_loc
column instead, but adding a new one seemed easier.Related Changes:
cancel_receiver
to acrossbeam-channel::mpmc
and parallelizes the db format upgrade by blockTests
PR Author's Checklist
PR Reviewer's Checklist