Skip to content
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 backfill batch size to monad testnet #16254

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/eighty-drinks-smell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": patch
---

#added LogBackfillBatchSize value to monad testnet as a result of context timeouts in backfill
2 changes: 1 addition & 1 deletion docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8910,7 +8910,7 @@ BlockBackfillDepth = 10
BlockBackfillSkip = false
FinalityDepth = 120
FinalityTagEnabled = false
LogBackfillBatchSize = 1000
LogBackfillBatchSize = 100
LogPollInterval = '2s'
LogKeepBlocksDepth = 100000
LogPrunePageSize = 0
Expand Down
7 changes: 4 additions & 3 deletions evm/config/toml/defaults/Monad_Testnet.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
ChainID = '10143'
# finality_depth was: 0
FinalityDepth = 120
# block_time was: 1s, adding 1 second buffer
LogPollInterval = '2s'
FinalityTagEnabled = false
LogBackfillBatchSize = 100 #context timeouts with higher values
# No WS Support
LogBroadcasterEnabled = false
FinalityTagEnabled = false
# block_time was: 1s, adding 1 second buffer
LogPollInterval = '2s'
# finality_depth * block_time / 60 secs = < 1 min (finality time)
NoNewFinalizedHeadsThreshold = '1m'
NoNewHeadsThreshold = '1m'
Expand Down
Loading