-
Notifications
You must be signed in to change notification settings - Fork 4
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
QSFS losing connection during operation #19
Comments
The issue is still available even when i tested it with a different config (16+4+4). The qsfs was working fine and i was able to read/write/list multiple files with this setup until i tried creating a 10gb file it took a long time to create the file then it produced an error A list of some of the files that were created successfully
and the file that produced the error
|
After connecting to a deployed Vm with a QSFS using terraform provider on testnet.
Using the example from threefoldtech/terraform-provider-grid
with the following config for the QSFS
First Example
VM Config:
According to TC199 after setting the cache to 256MB and trying to create a larger file with the following command
dd if=/dev/urandom of=tmp.txt bs=1M count=1024
Firstly it gives an i/o error and only creates a 256MB file
after that using the command
df -h
to check the disk size or trying any other command on /qsfs it gives a socket not connected errordf: /qsfs: Socket not connected
and after disconnecting from the vm and reconnecting again. still there is no /qsfs
Logs
metrics.txt
**note: after the qsfs disconnected i tried to redeploy using
terraform init && terraform apply -parallelism=1
and it also did not workSecond Example
Config is the same as the first example except:
VM Config is the same as the first example.
According to TC214 after setting the cache to 1GB and trying to create a 2GB file with the following command
dd if=/dev/urandom of=tmp.txt bs=1M count=2048
It gives an i/o error and only creates a 1GB file
Without disconnecting.
but after trying the same command again to create another file it disconnects during the creation of the file.
it only created a 750MB file and disconnected during creation giving
Connection aborted
and after that error trying any command on /qsfs givesSocket not connected
Disconnecting and reconnecting , redeploying also did not work.
Logs
metrics.txt
The text was updated successfully, but these errors were encountered: