forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
roachprod,roachtest: clean up references to raid and multiple stores
Currently, roachprod has flags for enabling multiple stores on nodes in a cluster, defaulting to `false`. If more than one storage device is present on a node, the devices are combined into a RAID0 (striped) volume. The terms "using multiple disks" and "using multiple stores" are also used interchangeably. Roachtest has its own cluster spec option, `RAID0(enabled)` for enabling RAID0, passing through the `UseMultipleDisks` parameter to roachprod. The former is the negation of the latter (i.e. RAID0 implies _not_ using multiple disks, using multiple disks implies _not_ using RAID0, etc.) The combination of "using multiple disks", "using multiple stores" and "using RAID0" can result in some cognitive overhead. Simplify things by adopting the "using multiple stores" parlance. Replace the `RAID0` roachtest cluster spec option with the `MultipleStores` option, updating existing call-sites with the negation (i.e. `RAID0(true)` becomes `MultipleStores(false)`, etc.). Allow AWS roachtests to enable / disable multiple stores. Previously, this functionality was limited to GCP clusters. Touches cockroachdb#82423. Release note: None.
- Loading branch information
Showing
9 changed files
with
55 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters