Skip to content

Commit d0a0aec

Browse files
committed
the default ingestion concurrency of 200 means that if the indexer is unlucky enough to not be able to process the first 11 checkpoints before saturation, we'll stall forever
1 parent 7f71b83 commit d0a0aec

File tree

1 file changed

+4
-1
lines changed
  • crates/sui-indexer-alt-framework/src

1 file changed

+4
-1
lines changed

crates/sui-indexer-alt-framework/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1992,7 +1992,10 @@ mod tests {
19921992
..Default::default()
19931993
};
19941994

1995-
let ingestion_config = IngestionConfig::default();
1995+
let ingestion_config = IngestionConfig {
1996+
ingest_concurrency: 501,
1997+
..Default::default()
1998+
};
19961999

19972000
let mut tasked_indexer = Indexer::new(
19982001
store.clone(),

0 commit comments

Comments
 (0)