Skip to content

Commit

Permalink
Increase node batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout committed Dec 26, 2023
1 parent 2972865 commit e710729
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
### Fixed

- tezos.tzkt: Fixed an issue with approving schema after reindexing triggered by rollback.
- evm.subsquid: Last mile indexing is significantly faster now.

## [7.2.1] - 2023-12-12

Expand Down
3 changes: 2 additions & 1 deletion src/dipdup/indexes/evm_subsquid_events/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@

LEVEL_BATCH_TIMEOUT = 1
NODE_SYNC_LIMIT = 128
NODE_BATCH_SIZE = 10
# NOTE: This value was chosen empirically and likely is not optimal.
NODE_BATCH_SIZE = 32


class SubsquidEventsIndex(
Expand Down

0 comments on commit e710729

Please sign in to comment.