nerdexam
Oracle

1Z0-821 · Question #110

You have a ZFS file system named /dbase/oral and you want to guarantee that 10 GB of storage space is available to that dataset for all data, snapshots, and clones. Which option would you choose?

The correct answer is D. zfs set reservation=10g dbase/oral. A ZFS reservation is an allocation of disk space from the pool that is guaranteed to be available to a dataset. As such, you cannot reserve disk space for a dataset if that space is not currently available in the pool. The total amount of all outstanding, unconsumed…

Managing Data Storage

Question

You have a ZFS file system named /dbase/oral and you want to guarantee that 10 GB of storage space is available to that dataset for all data, snapshots, and clones. Which option would you choose?

Options

  • Azfs set refreservation=10g dbase/oral
  • Bzfs set quota=10g dbase/oral
  • Czfs set refquota=10g dbase/oral
  • Dzfs set reservation=10g dbase/oral

How the community answered

(44 responses)
  • A
    2% (1)
  • B
    9% (4)
  • C
    5% (2)
  • D
    84% (37)

Explanation

A ZFS reservation is an allocation of disk space from the pool that is guaranteed to be available to a dataset. As such, you cannot reserve disk space for a dataset if that space is not currently available in the pool. The total amount of all outstanding, unconsumed reservations cannot exceed the amount of unused disk space in the pool. ZFS reservations can be set and displayed by using the zfs set and zfs get commands. For example: # zfs set reservation=5G tank/home/bill # zfs get reservation tank/home/bill NAME PROPERTY VALUE SOURCE tank/home/bill reservation 5G local

Topics

#ZFS reservation#ZFS quota#dataset properties#storage guarantee

Community Discussion

No community discussion yet for this question.

Full 1Z0-821 Practice