mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 22:47:56 +00:00
Introduce Notification block pinning limit (#2935)
While investigating some pruning issues I found some room for improvement in the notification pin handling. **Problem:** It was not possible to define an upper limit on notification pins. The block pinning cache has a limit, but only handles bodies and justifications. After this PR, bookkeeping for notifications is managed in the pinning worker. A limit can be defined in the worker. If that limit is crossed, blocks that were pinned for that notification are unpinned, which now affects the state as well as bodies and justifications. The pinned blocks cache still has a limit, but should never be hit. closes #19 --------- Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
This commit is contained in:
@@ -20,7 +20,7 @@ use schnellru::{Limiter, LruMap};
|
||||
use sp_runtime::{traits::Block as BlockT, Justifications};
|
||||
|
||||
const LOG_TARGET: &str = "db::pin";
|
||||
const PINNING_CACHE_SIZE: usize = 1024;
|
||||
const PINNING_CACHE_SIZE: usize = 2048;
|
||||
|
||||
/// Entry for pinned blocks cache.
|
||||
struct PinnedBlockCacheEntry<Block: BlockT> {
|
||||
|
||||
Reference in New Issue
Block a user