...
Code Block | ||
---|---|---|
| ||
$ /usr/bin/daos help daos command (v1.2.2), libdaos 1.2.0 usage: daos RESOURCE COMMAND [OPTIONS] resources: pool pool container (cont) container filesystem (fs) copy to and from a POSIX filesystem object (obj) object shell Interactive obj ctl shell for DAOS version print command version help print this message and exit use 'daos help RESOURCE' for resource specifics $ daos help cont daos command (v1.2.2), libdaos 1.2.0 container (cont) commands: create create a container clone clone a container destroy destroy a container list-objects list all objects in container list-obj query query a container get-prop get all container's properties set-prop set container's properties get-acl get a container's ACL overwrite-acl replace a container's ACL update-acl add/modify entries in a container's ACL delete-acl delete an entry from a container's ACL set-owner change the user and/or group that own a container stat get container statistics check check objects consistency in container list-attrs list container user-defined attributes del-attr delete container user-defined attribute get-attr get container user-defined attribute set-attr set container user-defined attribute create-snap create container snapshot (optional name) at most recent committed epoch list-snaps list container snapshots taken destroy-snap destroy container snapshots by name, epoch or range rollback roll back container to specified snapshot use 'daos help cont|container COMMAND' for command specific options |
daos container create
Code Block | |
---|---|
| |
| |
$ dmg pool create --size=10G Creating DAOS pool with automatic storage allocation: 10 GB NVMe + 6.00% SCM Pool created with 100.00% SCM/NVMe ratio ----------------------------------------- UUID : 528f4710-7eb8-4850-b6aa-09e4b3c8f532 Service Ranks : 0 Storage Ranks : 0 Total Size : 10 GB SCM : 10 GB (10 GB / rank) NVMe : 0 B (0 B / rank) $ daos cont create --pool=$DAOS_POOL Successfully created container bfef23e9-bbfa-4743-a95c-144c44078f16 |
daos container list
Code Blocknoformat | ||
---|---|---|
| ||
$ daos pool list-cont --pool=$DAOS_POOL bfef23e9-bbfa-4743-a95c-144c44078f16 |
daos container destroy
Code Block | |
---|---|
| |
| |
$ daos cont destroy --pool=$DAOS_POOL --cont=$DAOS_CONT Successfully destroyed container bfef23e9-bbfa-4743-a95c-144c44078f16 |
daos container create
No Formatcode | ||
---|---|---|
| ||
# Create a HDF5 container for oclass RP_3G12G1 traffic and redundancy_ factor = 21 # By default: type = POSIX # oclass = SX # rf:0 (redundancy_ factor) $ daos cont create --pool=$DAOS_POOL --type=HDF5 --oclass=RP_3G12G1 --properties=rf:21 Successfully created container bc4fe707-7470-4b7d-83bf-face75cc98fc |
daos container query
Code Blocknoformat | ||
---|---|---|
| ||
$ daos cont query --pool=$DAOS_POOL --cont=$DAOS_CONT Pool UUID: 528f4710-7eb8-4850-b6aa-09e4b3c8f532 Container UUID: bc4fe707-7470-4b7d-83bf-face75cc98fc Number of snapshots: 0 Latest Persistent Snapshot: 0 Highest Aggregated Epoch: 172477977191481344 Container redundancy factor: 21 |
daos container snapshot
Code Block | |
---|---|
| |
| |
$ daos help cont snapshot
daos command (v1.2.2), libdaos 1.2.0
container (cont) commands:
create create a container
clone clone a container
destroy destroy a container
list-objects list all objects in container
list-obj
query query a container
get-prop get all container's properties
set-prop set container's properties
get-acl get a container's ACL
overwrite-acl replace a container's ACL
update-acl add/modify entries in a container's ACL
delete-acl delete an entry from a container's ACL
set-owner change the user and/or group that own a container
stat get container statistics
check check objects consistency in container
list-attrs list container user-defined attributes
del-attr delete container user-defined attribute
get-attr get container user-defined attribute
set-attr set container user-defined attribute
create-snap create container snapshot (optional name)
at most recent committed epoch
list-snaps list container snapshots taken
destroy-snap destroy container snapshots
by name, epoch or range
rollback roll back container to specified snapshot
use 'daos help cont|container COMMAND' for command specific options
|
daos container snapshot create/list/destroy
Code Block | |
---|---|
| |
| |
$ daos cont create-snap --pool=$DAOS_POOL --cont=$DAOS_CONT snapshot/epoch 172646116775952384 has been created $ daos container list-snaps --pool=$DAOS_POOL --cont=$DAOS_CONT Container's snapshots : 172478166024060928 172646116775952384 $ daos container destroy-snap --pool=$DAOS_POOL --cont=$DAOS_CONT --epc=172646116775952384 $ daos container list-snaps --pool=$DAOS_POOL --cont=$DAOS_CONT Container's snapshots : 172478166024060928 |
Frequent errors user might see and workaround
use dmg command without daos_admin
...
privileges
Code Block | ||
---|---|---|
| ||
$ dmg system query ERROR: dmg: Unable to load Certificate Data: could not load cert: stat /etc/daos/certs/admin.crt: no such file or directory # or Node-hang after dmg system query command issued # Workaround # 1. Make sure the admin-host /etc/daos/daos_control.yml is correctly configured. # including: # hostlist: <daos_server_lists> # port: <port_num> # transport_config: # allow_insecure: <true/false> # ca_cert: /etc/daos/certs/daosCA.crt # cert: /etc/daos/certs/admin.crt # key: /etc/daos/certs/admin.key # # 2. Make sure the admin-host allow_insecure mode match with the servers'. |
use daos command before daos_agent started
Code Block | |
---|---|
| |
| |
$ daos cont create --pool=$DAOS_POOL daos ERR src/common/drpc.c:217 unixcomm_connect() Failed to connect to /var/run/daos_agent/daos_agent.sock, errno=2(No such file or directory) mgmt ERR src/mgmt/cli_mgmt.c:222 get_attach_info() failed to connect to /var/run/daos_agent/daos_agent.sock DER_MISC(-1025): 'Miscellaneous error' failed to initialize daos: Miscellaneous error (-1025) # Work around to check for daos_agent certification and start daos_agent $ #check for /etc/daos/certs/daosCA.crt, agent.crt and agent.key $ sudo systemctl enable daos_agent.service $ sudo systemctl start daos_agent.service |
use daos command with invalid or wrong parameters
No Formatcode | ||
---|---|---|
| ||
# Lack of providing daos pool_uuid $ daos pool list-cont pool UUID required rc: 2 daos command (v1.2.2), libdaos 1.2.0 usage: daos RESOURCE COMMAND [OPTIONS] resources: pool pool container (cont) container filesystem (fs) copy to and from a POSIX filesystem object (obj) object shell Interactive obj ctl shell for DAOS version print command version help print this message and exit use 'daos help RESOURCE' for resource specifics # Invalid sub-command cont-list $ daos pool cont-list --pool=$DAOS_POOL invalid pool command: cont-list error parsing command line arguments daos command (v1.2.2), libdaos 1.2.0 usage: daos RESOURCE COMMAND [OPTIONS] resources: pool pool container (cont) container filesystem (fs) copy to and from a POSIX filesystem object (obj) object shell Interactive obj ctl shell for DAOS version print command version help print this message and exit use 'daos help RESOURCE' for resource specifics # Working daos pool command $ daos pool list-cont --pool=$DAOS_POOL bc4fe707-7470-4b7d-83bf-face75cc98fc |
dmg pool create failed due to no space
Code Block | |
---|---|
| |
| |
$ dmg pool create --size=50G Creating DAOS pool with automatic storage allocation: 50 GB NVMe + 6.00% SCM ERROR: dmg: pool create failed: DER_NOSPACE(-1007): No space on storage target # Workaround: dmg storage query scan to find current available storage $ dmg storage query usage Hosts SCM-Total SCM-Free SCM-Used NVMe-Total NVMe-Free NVMe-Used ----- --------- -------- -------- ---------- --------- --------- boro-8 17 GB 6.0 GB 65 % 0 B 0 B N/A $ dmg pool create --size=2G Creating DAOS pool with automatic storage allocation: 2.0 GB NVMe + 6.00% SCM Pool created with 100.00% SCM/NVMe ratio ----------------------------------------- UUID : b5ce2954-3f3e-4519-be04-ea298d776132 Service Ranks : 0 Storage Ranks : 0 Total Size : 2.0 GB SCM : 2.0 GB (2.0 GB / rank) NVMe : 0 B (0 B / rank) $ dmg storage query usage Hosts SCM-Total SCM-Free SCM-Used NVMe-Total NVMe-Free NVMe-Used ----- --------- -------- -------- ---------- --------- --------- boro-8 17 GB 2.9 GB 83 % 0 B 0 B N/A |
Test with dfuse fio
required rpm
Code Blocknoformat | ||
---|---|---|
| ||
$ sudo yum install -y fio or $ sudo yum install -y daos-tests |
...