-
Notifications
You must be signed in to change notification settings - Fork 39
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
detect_nvmes
feature doesn't work for AWS
#407
Comments
The problem is a bit different than described. There is no "extra" NVMe on AWS instances. When you use an AWS Instance that has local NVMe disks - or what they refer to as instance store volumes - there will also be a volume that shows up as NVMe but however isn't. This is the root/boot volume which is in fact an EBS volume, however when you run Some more information here: https://docs.aws.amazon.com/ebs/latest/userguide/nvme-ebs-volumes.html This is even the fact when you add additional EBS volumes to the disk, they show up as NVMe.
There is a way to filter out which are really the NVMe, the shown serial using Either way, it would be a good start to indeed not use any "NVMe" that are not in use. I don't see an immediate way to filter it out using the |
NVMe disks should only be selected that are not in use, which should be the case when they are not partitioned. Fixes scylladb#407
NVMe disks should only be selected that are not in use, which should be the case when they are not mounted. Fixes scylladb#407 Signed-off-by: Vincent Reniers <[email protected]>
NVMe disks should only be selected that are not in use, which should be the case when they are not mounted. Fixes scylladb#407 Signed-off-by: Vincent Reniers <[email protected]>
AWS instances have an extra NVME for the boot disk, so when you enable
detect_nvmes
on a cluster with AWS instances, the node role will try to also use this extra NVME, since by default we try to use all the NVMEs present in the instance.We should change the role to only use NVMEs that are not already being used.
CC: @tarzanek
The text was updated successfully, but these errors were encountered: