|
FUSE
Steffan, What you’re doing is correct, and the results are mostly as expected. DAOS does not yet support pool and container enumeration although this is being worked on, once the feature is in DAOS th
Steffan, What you’re doing is correct, and the results are mostly as expected. DAOS does not yet support pool and container enumeration although this is being worked on, once the feature is in DAOS th
|
By
Pittman, Ashley M
· #72
·
|
|
POSIX file system tests.
Colin In terms of what goes over the network, and therefore peak bandwidth to a node dfs_write, IL (interception library) write and fuse write should be the same, for read dfs_read and fuse are curren
Colin In terms of what goes over the network, and therefore peak bandwidth to a node dfs_write, IL (interception library) write and fuse write should be the same, for read dfs_read and fuse are curren
|
By
Pittman, Ashley M
· #912
·
|
|
POSIX file system tests.
I’m not fully aware of the details but I think it’s more in the OFI layer so it’ll affect everything equally. It’s something we’re investigating currently. Ashley, From: <daos@daos.groups.io> on behal
I’m not fully aware of the details but I think it’s more in the OFI layer so it’ll affect everything equally. It’s something we’re investigating currently. Ashley, From: <daos@daos.groups.io> on behal
|
By
Pittman, Ashley M
· #914
·
|
|
FUSE Build & 'distro' module
Patrick, Yes, we spotted that ourselves just after it landed. We’re trying to work out how to handle this, and if there are any other non-default python libs that we already depend on in our build tha
Patrick, Yes, we spotted that ourselves just after it landed. We’re trying to work out how to handle this, and if there are any other non-default python libs that we already depend on in our build tha
|
By
Pittman, Ashley M
· #941
·
|
|
Attempts at using PyDAOS
Alex, Can you elaborate on what it is you’re trying to achieve? There are really two parts to the python bindings, there’s pydaos.raw which is using ctypes to open the daos client shared library from
Alex, Can you elaborate on what it is you’re trying to achieve? There are really two parts to the python bindings, there’s pydaos.raw which is using ctypes to open the daos client shared library from
|
By
Pittman, Ashley M
· #957
·
|
|
Attempts at using PyDAOS
The easiest way, assuming you want a single KV per container is to do the following: import pydaos cont = pydaos.cont(‘<pool_uuid>’, ‘<container_uuid>’) kv = cont.root_kv() kv[‘key’] = value If you wa
The easiest way, assuming you want a single KV per container is to do the following: import pydaos cont = pydaos.cont(‘<pool_uuid>’, ‘<container_uuid>’) kv = cont.root_kv() kv[‘key’] = value If you wa
|
By
Pittman, Ashley M
· #960
·
|
|
Attempts at using PyDAOS
That looks much better. You should be aware that daos will be using a byte-array for the values, so in this case 42 will be a string, not a integer. It’s likely that you’d want to use pickle/unpickle
That looks much better. You should be aware that daos will be using a byte-array for the values, so in this case 42 will be a string, not a integer. It’s likely that you’d want to use pickle/unpickle
|
By
Pittman, Ashley M
· #964
·
|
|
Need More Info from DUNS Attribute
Hi, Server_group certainly seems a useful thing to add, service ranks I thought was scheduled for removal but would also make sense if it’s still in use. I can file a ticket and work on this as part o
Hi, Server_group certainly seems a useful thing to add, service ranks I thought was scheduled for removal but would also make sense if it’s still in use. I can file a ticket and work on this as part o
|
By
Pittman, Ashley M
· #993
·
|
|
cannot mount daos with the latest code on github
Could you send me the command line you’re using and the error message? It would help to run in foreground mode to diagnose this. We recently added a check for the mount point to be a special UNS file
Could you send me the command line you’re using and the error message? It would help to run in foreground mode to diagnose this. We recently added a check for the mount point to be a special UNS file
|
By
Pittman, Ashley M
· #1027
·
|
|
Incompatible fuse ops ioctl signature with git cloned fuse installation
Yes, I’d spotted this might be a problem recently when looking at fuse commit history. Fuse started off with one prototype, then updated and we updated daos to match, then they more recently added ver
Yes, I’d spotted this might be a problem recently when looking at fuse commit history. Fuse started off with one prototype, then updated and we updated daos to match, then they more recently added ver
|
By
Pittman, Ashley M
· #1036
·
|
|
cannot mount daos with the latest code on github
Colin, I’m referring to the “Unified Name Space” feature or workflow that DAOS supports, in essence this is managed through the setting or a extended attribute “user.daos” on entries in the filesystem
Colin, I’m referring to the “Unified Name Space” feature or workflow that DAOS supports, in essence this is managed through the setting or a extended attribute “user.daos” on entries in the filesystem
|
By
Pittman, Ashley M
· #1038
·
|
|
cannot mount daos with the latest code on github
From: <daos@daos.groups.io> on behalf of Wu Huijun <huijunw91@...> Reply to: "daos@daos.groups.io" <daos@daos.groups.io> Date: Saturday, 6 June 2020 at 09:45 To: "daos@daos.groups.io" <daos@daos
From: <daos@daos.groups.io> on behalf of Wu Huijun <huijunw91@...> Reply to: "daos@daos.groups.io" <daos@daos.groups.io> Date: Saturday, 6 June 2020 at 09:45 To: "daos@daos.groups.io" <daos@daos
|
By
Pittman, Ashley M
· #1043
·
|
|
Error attempting to mount via DFUSE
Hi, This is the same issue as Gert hit last week, specifically that you’re providing the pool/container UUIDs twice to dfuse, one via the path and once on the command line. The fix in this case would
Hi, This is the same issue as Gert hit last week, specifically that you’re providing the pool/container UUIDs twice to dfuse, one via the path and once on the command line. The fix in this case would
|
By
Pittman, Ashley M
· #1225
·
|
|
Error attempting to mount via DFUSE
This case is different, the mount point here has not been used to create a container so dfuse is attempting to use the pool and container on the command line. The error reported is a DAOS error rather
This case is different, the mount point here has not been used to create a container so dfuse is attempting to use the pool and container on the command line. The error reported is a DAOS error rather
|
By
Pittman, Ashley M
· #1226
·
|
|
Error attempting to mount via DFUSE
This specific issue is different appears to be at the dfuse/fuse kernel module level. I note you’re using a newer fuse driver than I am (7.31 vs 7.23) and also a newer libfuse3 as evidenced by the “Un
This specific issue is different appears to be at the dfuse/fuse kernel module level. I note you’re using a newer fuse driver than I am (7.31 vs 7.23) and also a newer libfuse3 as evidenced by the “Un
|
By
Pittman, Ashley M
· #1227
·
|
|
Error attempting to mount via DFUSE
Peter, There have been no changes in status since your email on the 5th, although there has been a new dependency added to DAOS recently, l4z-devel is now a required package. Your previous problems we
Peter, There have been no changes in status since your email on the 5th, although there has been a new dependency added to DAOS recently, l4z-devel is now a required package. Your previous problems we
|
By
Pittman, Ashley M
· #1247
·
|
|
Error attempting to mount via DFUSE
Peter, Thank you for the update. I had spoken to Gert privately and we’d looked into the Ubuntu issue a bit but he’d also switched to a different OS version for testing. As I said before we do have ub
Peter, Thank you for the update. I had spoken to Gert privately and we’d looked into the Ubuntu issue a bit but he’d also switched to a different OS version for testing. As I said before we do have ub
|
By
Pittman, Ashley M
· #1251
·
|
|
Error attempting to mount via DFUSE
I would be grateful if you could try this PR on your Ubuntu 20.04 system. I was able to reproduce the problem here and this fixes it for me, it appears to be additional checks in newer kernels, combin
I would be grateful if you could try this PR on your Ubuntu 20.04 system. I was able to reproduce the problem here and this fixes it for me, it appears to be additional checks in newer kernels, combin
|
By
Pittman, Ashley M
· #1256
·
|
|
Error in installing via Docker and help needed for integrating with REST API
This will create a build a docker image using the Dockerfile from github, but the sources from the current directory so you need to do this from a checked-out copy of the source tree. Ashley. From: da
This will create a build a docker image using the Dockerfile from github, but the sources from the current directory so you need to do this from a checked-out copy of the source tree. Ashley. From: da
|
By
Pittman, Ashley M
· #1333
·
|
|
Error in installing via Docker and help needed for integrating with REST API
It looks like you’re trying to use 1.0.1? I’ve just checked that out locally and there’s no reference to patchelf at all in the source tree at that point, we use it now for checking that build version
It looks like you’re trying to use 1.0.1? I’ve just checked that out locally and there’s no reference to patchelf at all in the source tree at that point, we use it now for checking that build version
|
By
Pittman, Ashley M
· #1346
·
|