-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
roachtest: use pd-ssd as default, even when VolumeSize is set #104762
roachtest: use pd-ssd as default, even when VolumeSize is set #104762
Conversation
The cluster_to_cluster roachtest was setting VolumeSize, and assuming that the default pd-ssd is used, but instead the roachtest was running with standard pd (HDD). If VolumeSize is not set then roachtest is using local ssd, and if it is set then it uses whatever is in the GCEVolumeType. normally roachtest users don't set GCEVolumeType, and therefore roachtest uses an empty string for the pd type (which again means HDD). Instead, this pr keep the default volume type unless the user asked for something else. Epic: CRDB-25146 Release note: None
nice catch lidor! Just noting that,
But before making this change, do we know what customers usually use? pd-ssd or standard pd? |
ah, well actually, this might have been a regression introduced a few weeks ago in #103757 |
pd-ssd.
can you please explain? |
the above PR added this line: |
Thanks! |
bors r- |
Canceled. |
bors r+ |
bors single off |
Build failed: |
bors r+ |
Build failed (retrying...): |
Build succeeded: |
The cluster_to_cluster roachtest was setting VolumeSize, and assuming that the default pd-ssd is used, but instead the roachtest was running with standard pd (HDD). If VolumeSize is not set then roachtest is using local ssd, and if it is set then it uses whatever is in the GCEVolumeType. normally roachtest users don't set GCEVolumeType, and therefore roachtest uses an empty string for the pd type (which again means HDD).
Instead, this pr keep the default volume type unless the user asked for something else.
Epic: CRDB-25146
Release note: None