Open
Description
Description
Looking at the metric sync_single_block_lookups
on our nodes, they have 100k ~ 150k active lookups. The metric is properly implemented so this is a leak. Each lookup is quite small some hundreds of bytes so the leak is very slow and small overall.
A possible explanation is:
- Create a new lookup for block A
- Block A is already in the da_checker
- lookup skips sending a block request because it's already in the da_checker
- No need event for lookup is received, so it is never removed
Version
stable
Steps to resolve
Fixed with