Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TieredStorage] Allow HotStorage to handle more account data (solana-…
…labs#34155) #### Problem After we have defined AccountOffset to be u32, it means the address space within one HotAccountsFile is up to 4GB. However, since the Accounts Blocks in a HotAccountsFile is 8-byte aligned, it has the opportunity to store more data by internally multiplying the AccountOffset by 8. #### Summary of Changes This PR allows a HotAccountsFile to store up to 32GB accounts data by using 8 x AccountOffset as its actual offset. #### Test Plan Updated existing unit-tests.
- Loading branch information