Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
41012: roachtest: reduce row size in hotspotsplits to fix flake r=rytaft a=rytaft This commit reduces the kv block size from 512 KB to 256 KB in the `hotspotsplits/nodes=4` roachtest to fix an out-of-memory condition that was causing flakiness in the test. The flakiness is caused by the fact that automatic stats collection requires a full table scan, and the kv batch size is currently hard-coded to 10,000 rows. With each row utilizing 512 KB, this results in a minimum of 5 GB of memory utilization during calculation of stats. Once the kv batch size can be dynamically adjusted based on the size of the rows, we can reset the block size in this roachtest back to 512 KB. Informs cockroachdb#33660 Release note: None Release justification: Non-production code change to fix a flaky test. Co-authored-by: Rebecca Taft <[email protected]>
- Loading branch information