-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Docker, overlay2, XFS #3029
Comments
I solved this for the meantime with replacing the else:
if os.environ.has_key("SCYLLA_CONF"):
conf_dir = os.environ["SCYLLA_CONF"]
else:
conf_dir = "/etc/scylla"
cfg = yaml.load(open(os.path.join(conf_dir, "scylla.yaml")))
data_dir = "/var/lib/scylla"
iotune_args = []
if cpudata.cpuset():
iotune_args += [ "--cpuset", ",".join(map(str, cpudata.cpuset())) ]
elif cpudata.smp():
iotune_args += [ "--smp", cpudata.smp() ] |
@penberg - can you provide your input on this |
I think it's a bug in hwloc. It tried to parse |
same problem with 2.0.0 docker image. |
Yes. The bug is in hwloc. open-mpi/hwloc#142 |
Well, we can package a newer hwloc, or someone with a Red Hat subscription can ask for a fix. |
Actually, looks like RHEL 7.5 packages 1.11.8, so the problem is solved. We just have to wait until CentOS 7.5 is released. |
CentOS 7.5 was released some years ago, closing. |
Installation details
Scylla version (or git commit hash):
2.0.1 Docker Image
Cluster size:
5
OS (RHEL/CentOS/Ubuntu/AWS AMI):
CoreOS Stable + Kubernetes
Platform (physical/VM/cloud instance type/docker):
Bare Metal, CoreOS pxe boot, kubernetes with docker 1.12.9.
Hardware: sockets=2 cores=16 hyperthreading=32 memory=192gb
Disks: (SSD/HDD, count):
hardware RAID0 2x 480GB SSDs.
I have several boxes with no raid, and SSD1=ext4 for system, and SSD2=xfs for scylla directory mounted into the docker container.
However I tried to convert one to RAID0 xfs the entire disk, with overlay2 instead of overlay storage driver and I get the following error when trying to start without dev=1
I'm guessing its a difference between overlay and overlay2 maybe? Not sure - but really don't want to run the nodes in dev mode.
Thanks,
The text was updated successfully, but these errors were encountered: