Skip to content

Commit

Permalink
Increase scheduler max batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
nhynes committed Feb 27, 2020
1 parent cc3f2ff commit 22fe63f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .changelog/2741.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Increase scheduler max batch size to 16 MiB.
This facilitates RPCs to larger, more featureful runtimes.
2 changes: 1 addition & 1 deletion go/oasis-net-runner/fixtures/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func NewDefaultFixture() (*oasis.NetworkFixture, error) {
Algorithm: registry.TxnSchedulerAlgorithmBatching,
GroupSize: 2,
MaxBatchSize: 1,
MaxBatchSizeBytes: 1000,
MaxBatchSizeBytes: 16 * 1024 * 1024, // 16 MiB
BatchFlushTimeout: 20 * time.Second,
},
Storage: registry.StorageParameters{
Expand Down

0 comments on commit 22fe63f

Please sign in to comment.