Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: increase default and max FVM concurrency
We used to allocate 1024 instances per "concurrency" but we now only allocate 1024 plus 20 per "concurrency". So, I'm increasing the default and maximum concurrency factors to take advantage of this. Importantly: 1. Max concurrency 128 -> 4096. `1024 + 4096*20 < 128 * 1024`. 2. Default concurrency 4 -> 150. `1024 + 150*20 < 4 * 1024`. Motivation: I'm hoping that the default (150) is sufficient (more than the previous max...) so we can just get rid of this knob. fixes filecoin-project/lotus#11817
- Loading branch information