Whamcloud - gitweb
LUDOC-460 quota: statfs functionality for project quota
[doc/manual.git] / ConfiguringQuotas.xml
1 <?xml version='1.0' encoding='utf-8'?>
2 <chapter xmlns="http://docbook.org/ns/docbook"
3  xmlns:xl="http://www.w3.org/1999/xlink" version="5.0" xml:lang="en-US"
4  xml:id="configuringquotas">
5   <title xml:id="configuringquotas.title">Configuring and Managing
6   Quotas</title>
7   <section xml:id="quota_configuring">
8     <title>
9     <indexterm>
10       <primary>Quotas</primary>
11       <secondary>configuring</secondary>
12     </indexterm>Working with Quotas</title>
13     <para>Quotas allow a system administrator to limit the amount of disk
14     space a user, group, or project can use. Quotas are set by root, and can
15     be specified for individual users, groups, and/or projects. Before a file
16     is written to a partition where quotas are set, the quota of the creator's
17     group is checked. If a quota exists, then the file size counts towards
18     the group's quota. If no quota exists, then the owner's user quota is
19     checked before the file is written. Similarly, inode usage for specific
20     functions can be controlled if a user over-uses the allocated space.</para>
21     <para>Lustre quota enforcement differs from standard Linux quota
22     enforcement in several ways:</para>
23     <itemizedlist>
24       <listitem>
25         <para>Quotas are administered via the
26         <literal>lfs</literal> and
27         <literal>lctl</literal> commands (post-mount).</para>
28       </listitem>
29       <listitem>
30         <para>The quota feature in Lustre software is distributed
31         throughout the system (as the Lustre file system is a distributed file
32         system). Because of this, quota setup and behavior on Lustre is
33         somewhat different from local disk quotas in the following ways:</para>
34         <itemizedlist>
35         <listitem>
36           <para>No single point of administration: some commands must be
37           executed on the MGS, other commands on the MDSs and OSSs, and still
38           other commands on the client.</para>
39           </listitem>
40           <listitem>
41           <para>Granularity: a local quota is typically specified for
42           kilobyte resolution, Lustre uses one megabyte as the smallest quota
43           resolution.</para>
44           </listitem>
45           <listitem>
46           <para>Accuracy: quota information is distributed throughout the file
47           system and can only be accurately calculated with a quiescent file
48           system in order to minimize performance overhead during normal use.
49           </para>
50         </listitem>
51         </itemizedlist>
52       </listitem>
53       <listitem>
54         <para>Quotas are allocated and consumed in a quantized fashion.</para>
55       </listitem>
56       <listitem>
57         <para>Client does not set the
58         <literal>usrquota</literal> or
59         <literal>grpquota</literal> options to mount. Space accounting is
60         enabled by default and quota enforcement can be enabled/disabled on
61         a per-filesystem basis with <literal>lctl conf_param</literal>.</para>
62         <para condition="l28">It is worth noting that the
63         <literal>lfs quotaon</literal>, <literal>lfs quotaoff</literal>,
64         <literal>lfs quotacheck</literal> and <literal>quota_type</literal>
65         sub-commands are deprecated as of Lustre 2.4.0, and removed completely
66         in Lustre 2.8.0.</para>
67       </listitem>
68     </itemizedlist>
69     <caution>
70       <para>Although a quota feature is available in the Lustre software, root
71       quotas are NOT enforced.</para>
72       <para>
73       <literal>lfs setquota -u root</literal> (limits are not enforced)</para>
74       <para>
75       <literal>lfs quota -u root</literal> (usage includes internal Lustre data
76       that is dynamic in size and does not accurately reflect mount point
77       visible block and inode usage).</para>
78     </caution>
79   </section>
80   <section xml:id="enabling_disk_quotas">
81     <title>
82     <indexterm>
83       <primary>Quotas</primary>
84       <secondary>enabling disk</secondary>
85     </indexterm>Enabling Disk Quotas</title>
86     <para>The design of quotas on Lustre has management and enforcement
87     separated from resource usage and accounting. Lustre software is
88     responsible for management and enforcement. The back-end file
89     system is responsible for resource usage and accounting. Because of
90     this, it is necessary to begin enabling quotas by enabling quotas on the
91     back-end disk system.
92     </para>
93       <caution>
94         <para>Quota setup is orchestrated by the MGS and <emphasis>all setup
95         commands in this section must be run directly on the MGS</emphasis>.
96         Support for project quotas specifically requires Lustre Release 2.10 or
97         later.  A <emphasis>patched server</emphasis> may be required, depending
98         on the kernel version and backend filesystem type:</para>
99         <informaltable frame="all">
100           <tgroup cols="2">
101           <colspec colname="c1" colwidth="50*" />
102           <colspec colname="c2" colwidth="50*" align="center" />
103           <thead>
104             <row>
105               <entry>
106                 <para>
107                   <emphasis role="bold">Configuration</emphasis>
108                 </para>
109               </entry>
110               <entry>
111                 <para>
112                   <emphasis role="bold">Patched Server Required?</emphasis>
113                 </para>
114               </entry>
115             </row>
116           </thead>
117           <tbody>
118             <row>
119               <entry><para>
120                 <emphasis>ldiskfs with kernel version &lt; 4.5</emphasis>
121               </para></entry>
122               <entry><para>Yes</para></entry>
123             </row>
124             <row>
125               <entry><para>
126                 <emphasis>ldiskfs with kernel version &gt;= 4.5</emphasis>
127               </para></entry>
128               <entry><para>No</para></entry>
129             </row>
130             <row>
131               <entry><para>
132                 <emphasis>zfs version &gt;=0.8 with kernel
133                 version &lt; 4.5</emphasis>
134               </para></entry>
135               <entry><para>Yes</para></entry>
136             </row>
137             <row>
138               <entry><para>
139                 <emphasis>zfs version &gt;=0.8 with kernel
140                 version &gt; 4.5</emphasis>
141               </para></entry>
142               <entry><para>No</para></entry>
143             </row>
144           </tbody>
145           </tgroup>
146         </informaltable>
147         <para>*Note:  Project quotas are not supported on zfs versions earlier
148         than 0.8.</para>
149       </caution>
150       <para>Once setup, verification of the quota state must be performed on the
151       MDT. Although quota enforcement is managed by the Lustre software, each
152       OSD implementation relies on the back-end file system to maintain
153       per-user/group/project block and inode usage. Hence, differences exist
154       when setting up quotas with ldiskfs or ZFS back-ends:</para>
155       <itemizedlist>
156         <listitem>
157           <para>For ldiskfs backends,
158           <literal>mkfs.lustre</literal> now creates empty quota files and
159           enables the QUOTA feature flag in the superblock which turns quota
160           accounting on at mount time automatically. e2fsck was also modified
161           to fix the quota files when the QUOTA feature flag is present. The
162           project quota feature is disabled by default, and
163           <literal>tune2fs</literal> needs to be run to enable every target
164           manually.  If user, group, and project quota usage is inconsistent,
165           run <literal>e2fsck -f</literal> on all unmounted MDTs and OSTs.
166           </para>
167         </listitem>
168         <listitem>
169           <para>For ZFS backend, <emphasis>the project quota feature is not
170           supported on zfs versions less than 0.8.0.</emphasis> Accounting ZAPs
171           are created and maintained by the ZFS file system itself. While ZFS
172           tracks per-user and group block usage, it does not handle inode
173           accounting for ZFS versions prior to zfs-0.7.0. The ZFS OSD previously
174           implemented its own support for inode tracking. Two options are
175           available:</para>
176           <orderedlist>
177             <listitem>
178               <para>The ZFS OSD can estimate the number of inodes in-use based
179               on the number of blocks used by a given user or group. This mode
180               can be enabled by running the following command on the server
181               running the target:
182               <literal>lctl set_param
183               osd-zfs.${FSNAME}-${TARGETNAME}.quota_iused_estimate=1</literal>.
184               </para>
185             </listitem>
186             <listitem>
187               <para>Similarly to block accounting, dedicated ZAPs are also
188               created the ZFS OSD to maintain per-user and group inode usage.
189               This is the default mode which corresponds to
190               <literal>quota_iused_estimate</literal> set to 0.</para>
191             </listitem>
192           </orderedlist>
193         </listitem>
194       </itemizedlist>
195       <note>
196       <para>To (re-)enable space usage quota on ldiskfs filesystems, run
197       <literal>tune2fs -O quota</literal> against all targets. This command
198       sets the QUOTA feature flag in the superblock and runs e2fsck internally.
199       As a result, the target must be offline to build the per-UID/GID disk
200       usage database.</para>
201       <para condition="l2A">Lustre filesystems formatted with a Lustre release
202       prior to 2.10 can be still safely upgraded to release 2.10, but will not
203       have project quota usage reporting functional until
204       <literal>tune2fs -O project</literal> is run against all ldiskfs backend
205       targets. This command sets the PROJECT feature flag in the superblock and
206       runs e2fsck (as a result, the target must be offline). See
207       <xref linkend="quota_interoperability"/> for further important
208       considerations.</para>
209       </note>
210       <caution>
211         <para>Lustre requires a version of e2fsprogs that supports quota
212         to be installed on the server nodes when using the ldiskfs backend
213         (e2fsprogs is not needed with ZFS backend). In general, we recommend
214         to use the latest e2fsprogs version available on
215         <link xl:href="https://downloads.whamcloud.com/public/e2fsprogs/">
216         https://downloads.whamcloud.com/public/e2fsprogs/</link>.</para>
217         <para>The ldiskfs OSD relies on the standard Linux quota to maintain
218         accounting information on disk. As a consequence, the Linux kernel
219         running on the Lustre servers using ldiskfs backend must have
220         <literal>CONFIG_QUOTA</literal>,
221         <literal>CONFIG_QUOTACTL</literal> and
222         <literal>CONFIG_QFMT_V2</literal> enabled.</para>
223       </caution>
224       <para>Quota enforcement is turned on/off independently of space
225         accounting which is always enabled.  There is a single per-file
226         system quota parameter controlling inode/block quota enforcement.
227         Like all permanent parameters, this quota parameter can be set via
228         <literal>lctl conf_param</literal> on the MGS via the command:</para>
229       <screen>
230 lctl conf_param <replaceable>fsname</replaceable>.quota.<replaceable>ost|mdt</replaceable>=<replaceable>u|g|p|ugp|none</replaceable>
231 </screen>
232       <itemizedlist>
233         <listitem>
234           <para>
235           <literal>ost</literal> -- to configure block quota managed by
236           OSTs</para>
237         </listitem>
238         <listitem>
239           <para>
240           <literal>mdt</literal> -- to configure inode quota managed by
241           MDTs</para>
242         </listitem>
243         <listitem>
244           <para>
245           <literal>u</literal> -- to enable quota enforcement for users
246           only</para>
247         </listitem>
248         <listitem>
249           <para>
250           <literal>g</literal> -- to enable quota enforcement for groups
251           only</para>
252         </listitem>
253         <listitem>
254           <para>
255           <literal>p</literal> -- to enable quota enforcement for projects
256           only</para>
257         </listitem>
258         <listitem>
259           <para>
260           <literal>ugp</literal> -- to enable quota enforcement for all users,
261           groups and projects</para>
262         </listitem>
263         <listitem>
264           <para>
265           <literal>none</literal> -- to disable quota enforcement for all users,
266           groups and projects</para>
267         </listitem>
268       </itemizedlist>
269       <para>Examples:</para>
270       <para>To turn on user, group, and project quotas for block only on
271       file system
272       <literal>testfs1</literal>, <emphasis>on the MGS</emphasis> run:</para>
273       <screen>mgs# lctl conf_param testfs1.quota.ost=ugp </screen>
274       <para>To turn on group quotas for inodes on file system
275       <literal>testfs2</literal>, on the MGS run:</para>
276       <screen>mgs# lctl conf_param testfs2.quota.mdt=g </screen>
277       <para>To turn off user, group, and project quotas for both inode and block
278       on file system
279       <literal>testfs3</literal>, on the MGS run:</para>
280       <screen>mgs# lctl conf_param testfs3.quota.ost=none</screen>
281       <screen>mgs# lctl conf_param testfs3.quota.mdt=none</screen>
282       <section xml:id="quota_verification">
283         <title>
284         <indexterm>
285           <primary>Quotas</primary>
286           <secondary>verifying</secondary>
287         </indexterm>Quota Verification</title>
288       <para>Once the quota parameters have been configured, all targets
289       which are part of the file system will be automatically notified of the
290       new quota settings and enable/disable quota enforcement as needed. The
291       per-target enforcement status can still be verified by running the
292       following <emphasis>command on the MDS(s)</emphasis>:</para>
293       <screen>
294 $ lctl get_param osd-*.*.quota_slave.info
295 osd-zfs.testfs-MDT0000.quota_slave.info=
296 target name:    testfs-MDT0000
297 pool ID:        0
298 type:           md
299 quota enabled:  ug
300 conn to master: setup
301 user uptodate:  glb[1],slv[1],reint[0]
302 group uptodate: glb[1],slv[1],reint[0]
303 </screen>
304       </section>
305   </section>
306   <section xml:id="quota_administration">
307     <title>
308     <indexterm>
309       <primary>Quotas</primary>
310       <secondary>creating</secondary>
311     </indexterm>Quota Administration</title>
312     <para>Once the file system is up and running, quota limits on blocks
313     and inodes can be set for user, group, and project. This is <emphasis>
314     controlled entirely from a client</emphasis> via three quota
315     parameters:</para>
316     <para>
317     <emphasis role="bold">Grace period</emphasis>-- The period of time (in
318     seconds) within which users are allowed to exceed their soft limit. There
319     are six types of grace periods:</para>
320     <itemizedlist>
321       <listitem>
322         <para>user block soft limit</para>
323       </listitem>
324       <listitem>
325         <para>user inode soft limit</para>
326       </listitem>
327       <listitem>
328         <para>group block soft limit</para>
329       </listitem>
330       <listitem>
331         <para>group inode soft limit</para>
332       </listitem>
333       <listitem>
334         <para>project block soft limit</para>
335       </listitem>
336       <listitem>
337         <para>project inode soft limit</para>
338       </listitem>
339     </itemizedlist>
340     <para>The grace period applies to all users. The user block soft limit is
341     for all users who are using a blocks quota.</para>
342     <para>
343     <emphasis role="bold">Soft limit</emphasis> -- The grace timer is started
344     once the soft limit is exceeded. At this point, the user/group/project
345     can still allocate block/inode. When the grace time expires and if the
346     user is still above the soft limit, the soft limit becomes a hard limit
347     and the user/group/project can't allocate any new block/inode any more.
348     The user/group/project should then delete files to be under the soft limit.
349     The soft limit MUST be smaller than the hard limit. If the soft limit is
350     not needed, it should be set to zero (0).</para>
351     <para>
352     <emphasis role="bold">Hard limit</emphasis> -- Block or inode allocation
353     will fail with
354     <literal>EDQUOT</literal>(i.e. quota exceeded) when the hard limit is
355     reached. The hard limit is the absolute limit. When a grace period is set,
356     one can exceed the soft limit within the grace period if under the hard
357     limit.</para>
358     <para>Due to the distributed nature of a Lustre file system and the need to
359     maintain performance under load, those quota parameters may not be 100%
360     accurate. The quota settings can be manipulated via the
361     <literal>lfs</literal> command, executed on a client, and includes several
362     options to work with quotas:</para>
363     <itemizedlist>
364       <listitem>
365         <para>
366         <varname>quota</varname> -- displays general quota information (disk
367         usage and limits)</para>
368       </listitem>
369       <listitem>
370         <para>
371         <varname>setquota</varname> -- specifies quota limits and tunes the
372         grace period. By default, the grace period is one week.</para>
373       </listitem>
374     </itemizedlist>
375     <para>Usage:</para>
376     <screen>
377 lfs quota [-q] [-v] [-h] [-o obd_uuid] [-u|-g|-p <replaceable>uname|uid|gname|gid|projid</replaceable>] <replaceable>/mount_point</replaceable>
378 lfs quota -t {-u|-g|-p} <replaceable>/mount_point</replaceable>
379 lfs setquota {-u|--user|-g|--group|-p|--project} <replaceable>username|groupname</replaceable> [-b <replaceable>block-softlimit</replaceable>] \
380              [-B <replaceable>block_hardlimit</replaceable>] [-i <replaceable>inode_softlimit</replaceable>] \
381              [-I <replaceable>inode_hardlimit</replaceable>] <replaceable>/mount_point</replaceable>
382 </screen>
383     <para>To display general quota information (disk usage and limits) for the
384     user running the command and his primary group, run:</para>
385     <screen>
386 $ lfs quota /mnt/testfs
387 </screen>
388     <para>To display general quota information for a specific user ("
389     <literal>bob</literal>" in this example), run:</para>
390     <screen>
391 $ lfs quota -u bob /mnt/testfs
392 </screen>
393     <para>To display general quota information for a specific user ("
394     <literal>bob</literal>" in this example) and detailed quota statistics for
395     each MDT and OST, run:</para>
396     <screen>
397 $ lfs quota -u bob -v /mnt/testfs
398 </screen>
399     <para>To display general quota information for a specific project ("
400     <literal>1</literal>" in this example), run:</para>
401     <screen>
402 $ lfs quota -p 1 /mnt/testfs
403 </screen>
404     <para>To display general quota information for a specific group ("
405     <literal>eng</literal>" in this example), run:</para>
406     <screen>
407 $ lfs quota -g eng /mnt/testfs
408 </screen>
409     <para>To limit quota usage for a specific project ID on a specific
410     directory ("<literal>/mnt/testfs/dir</literal>" in this example), run:</para>
411     <screen>
412 $ chattr +P /mnt/testfs/dir
413 $ chattr -p 1 /mnt/testfs/dir
414 $ lfs setquota -p 1 -b 307200 -B 309200 -i 10000 -I 11000 /mnt/testfs
415 </screen>
416     <para>Please note that if it is desired to have
417     <literal>lfs quota -p</literal> show the space/inode usage under the
418     directory properly (much faster than <literal>du</literal>), then the
419     user/admin needs to use different project IDs for different directories.
420     </para>
421     <para>To display block and inode grace times for user quotas, run:</para>
422     <screen>
423 $ lfs quota -t -u /mnt/testfs
424 </screen>
425     <para>To set user or group quotas for a specific ID ("bob" in this
426     example), run:</para>
427     <screen>
428 $ lfs setquota -u bob -b 307200 -B 309200 -i 10000 -I 11000 /mnt/testfs
429 </screen>
430     <para>In this example, the quota for user "bob" is set to 300 MB
431     (309200*1024) and the hard limit is 11,000 files. Therefore, the inode hard
432     limit should be 11000.</para>
433     <para>The quota command displays the quota allocated and consumed by each
434     Lustre target. Using the previous
435     <literal>setquota</literal> example, running this
436     <literal>lfs</literal> quota command:</para>
437     <screen>
438 $ lfs quota -u bob -v /mnt/testfs
439 </screen>
440     <para>displays this command output:</para>
441     <screen>
442 Disk quotas for user bob (uid 6000):
443 Filesystem          kbytes quota limit grace files quota limit grace
444 /mnt/testfs         0      30720 30920 -     0     10000 11000 -
445 testfs-MDT0000_UUID 0      -      8192 -     0     -     2560  -
446 testfs-OST0000_UUID 0      -      8192 -     0     -     0     -
447 testfs-OST0001_UUID 0      -      8192 -     0     -     0     -
448 Total allocated inode limit: 2560, total allocated block limit: 24576
449 </screen>
450     <para>Global quota limits are stored in dedicated index files (there is one
451     such index per quota type) on the quota master target (aka QMT). The QMT
452     runs on MDT0000 and exports the global indices via <replaceable>lctl
453     get_param</replaceable>. The global indices can thus be dumped via the
454     following command:
455     <screen>
456 # lctl get_param qmt.testfs-QMT0000.*.glb-*
457 </screen>The format of global indexes depends on the OSD type. The ldiskfs OSD
458 uses an IAM files while the ZFS OSD creates dedicated ZAPs.</para>
459     <para>Each slave also stores a copy of this global index locally. When the
460     global index is modified on the master, a glimpse callback is issued on the
461     global quota lock to notify all slaves that the global index has been
462     modified. This glimpse callback includes information about the identifier
463     subject to the change. If the global index on the QMT is modified while a
464     slave is disconnected, the index version is used to determine whether the
465     slave copy of the global index isn't up to date any more. If so, the slave
466     fetches the whole index again and updates the local copy. The slave copy of
467     the global index can also be accessed via the following command:
468     <screen>
469 lctl get_param osd-*.*.quota_slave.limit*
470 </screen></para>
471   </section>
472   <section condition='l2C' xml:id="default_quota">
473     <title>
474     <indexterm>
475       <primary>Quotas</primary>
476       <secondary>default</secondary>
477     </indexterm>Default Quota</title>
478     <para>The default quota is used to enforce the quota limits for any user,
479     group, or project that do not have quotas set by administrator.</para>
480     <para>The default quota can be disabled by setting limits to
481     <literal>0</literal>.</para>
482       <section xml:id="defalut_quota_usage">
483       <title>
484       <indexterm>
485         <primary>Quotas</primary>
486         <secondary>usage</secondary>
487       </indexterm>Usage</title>
488       <screen>
489 lfs quota [-U|--default-usr|-G|--default-grp|-P|--default-prj] <replaceable>/mount_point</replaceable>
490 lfs setquota {-U|--default-usr|-G|--default-grp|-P|--default-prj} [-b <replaceable>block-softlimit</replaceable>] \
491              [-B <replaceable>block_hardlimit</replaceable>] [-i <replaceable>inode_softlimit</replaceable>] [-I <replaceable>inode_hardlimit</replaceable>] <replaceable>/mount_point</replaceable>
492 lfs setquota {-u|-g|-p} <replaceable>username|groupname</replaceable> -d <replaceable>/mount_point</replaceable>
493       </screen>
494       <para>To set the default user quota:</para>
495       <screen>
496 # lfs setquota -U -b 10G -B 11G -i 100K -I 105K /mnt/testfs
497       </screen>
498       <para>To set the default group quota:</para>
499       <screen>
500 # lfs setquota -G -b 10G -B 11G -i 100K -I 105K /mnt/testfs
501       </screen>
502       <para>To set the default project quota:</para>
503       <screen>
504 # lfs setquota -P -b 10G -B 11G -i 100K -I 105K /mnt/testfs
505       </screen>
506       <para>To disable the default user quota:</para>
507       <screen>
508 # lfs setquota -U -b 0 -B 0 -i 0 -I 0 /mnt/testfs
509       </screen>
510       <para>To disable the default group quota:</para>
511       <screen>
512 # lfs setquota -G -b 0 -B 0 -i 0 -I 0 /mnt/testfs
513       </screen>
514       <para>To disable the default project quota:</para>
515       <screen>
516 # lfs setquota -P -b 0 -B 0 -i 0 -I 0 /mnt/testfs
517       </screen>
518       <note>
519       <para>
520       If quota limits are set for some user, group or project, it will use
521       those specific quota limits instead of the default quota. Quota limits for
522       any user, group or project will use the default quota by setting its quota
523       limits to <literal>0</literal>.
524       </para>
525       </note>
526     </section>
527   </section>
528   <section xml:id="quota_allocation">
529     <title>
530     <indexterm>
531       <primary>Quotas</primary>
532       <secondary>allocating</secondary>
533     </indexterm>Quota Allocation</title>
534     <para>In a Lustre file system, quota must be properly allocated or users
535     may experience unnecessary failures. The file system block quota is divided
536     up among the OSTs within the file system. Each OST requests an allocation
537     which is increased up to the quota limit. The quota allocation is then
538     <emphasis role="italic">quantized</emphasis> to reduce the number of
539     quota-related request traffic.</para>
540     <para>The Lustre quota system distributes quotas from the Quota Master
541     Target (aka QMT). Only one QMT instance is supported for now and only runs
542     on the same node as MDT0000. All OSTs and MDTs set up a Quota Slave Device
543     (aka QSD) which connects to the QMT to allocate/release quota space. The
544     QSD is setup directly from the OSD layer.</para>
545     <para>To reduce quota requests, quota space is initially allocated to QSDs
546     in very large chunks. How much unused quota space can be held by a target
547     is controlled by the qunit size. When quota space for a given ID is close
548     to exhaustion on the QMT, the qunit size is reduced and QSDs are notified
549     of the new qunit size value via a glimpse callback. Slaves are then
550     responsible for releasing quota space above the new qunit value. The qunit
551     size isn't shrunk indefinitely and there is a minimal value of 1MB for
552     blocks and 1,024 for inodes. This means that the quota space rebalancing
553     process will stop when this minimum value is reached. As a result, quota
554     exceeded can be returned while many slaves still have 1MB or 1,024 inodes
555     of spare quota space.</para>
556     <para>If we look at the
557     <literal>setquota</literal> example again, running this
558     <literal>lfs quota</literal> command:</para>
559     <screen>
560 # lfs quota -u bob -v /mnt/testfs
561 </screen>
562     <para>displays this command output:</para>
563     <screen>
564 Disk quotas for user bob (uid 500):
565 Filesystem          kbytes quota limit grace       files  quota limit grace
566 /mnt/testfs         30720* 30720 30920 6d23h56m44s 10101* 10000 11000
567 6d23h59m50s
568 testfs-MDT0000_UUID 0      -     0     -           10101  -     10240
569 testfs-OST0000_UUID 0      -     1024  -           -      -     -
570 testfs-OST0001_UUID 30720* -     29896 -           -      -     -
571 Total allocated inode limit: 10240, total allocated block limit: 30920
572 </screen>
573     <para>The total quota limit of 30,920 is allocated to user bob, which is
574     further distributed to two OSTs.</para>
575     <para>Values appended with '
576     <literal>*</literal>' show that the quota limit has been exceeded, causing
577     the following error when trying to write or create a file:</para>
578     <para>
579       <screen>
580 $ cp: writing `/mnt/testfs/foo`: Disk quota exceeded.
581 </screen>
582     </para>
583     <note>
584       <para>It is very important to note that the block quota is consumed per
585       OST and the inode quota per MDS. Therefore, when the quota is consumed on
586       one OST (resp. MDT), the client may not be able to create files
587       regardless of the quota available on other OSTs (resp. MDTs).</para>
588       <para>Setting the quota limit below the minimal qunit size may prevent
589       the user/group from all file creation. It is thus recommended to use
590       soft/hard limits which are a multiple of the number of OSTs * the minimal
591       qunit size.</para>
592     </note>
593     <para>To determine the total number of inodes, use
594     <literal>lfs df -i</literal>(and also
595     <literal>lctl get_param *.*.filestotal</literal>). For more information on
596     using the
597     <literal>lfs df -i</literal> command and the command output, see
598     <xref linkend="file_striping.checking_free_space" />.</para>
599     <para>Unfortunately, the
600     <literal>statfs</literal> interface does not report the free inode count
601     directly, but instead reports the total inode and used inode counts. The
602     free inode count is calculated for
603     <literal>df</literal> from (total inodes - used inodes). It is not critical
604     to know the total inode count for a file system. Instead, you should know
605     (accurately), the free inode count and the used inode count for a file
606     system. The Lustre software manipulates the total inode count in order to
607     accurately report the other two values.</para>
608   </section>
609   <section xml:id="quota_interoperability">
610     <title>
611     <indexterm>
612       <primary>Quotas</primary>
613       <secondary>Interoperability</secondary>
614     </indexterm>Quotas and Version Interoperability</title>
615     <para condition="l2A">To use the project quota functionality introduced in
616     Lustre 2.10, <emphasis role="bold">all Lustre servers and clients must be
617     upgraded to Lustre release 2.10 or later for project quota to work
618     correctly</emphasis>.  Otherwise, project quota will be inaccessible on
619     clients and not be accounted for on OSTs.  Furthermore, the
620     <emphasis role="bold">servers may be required to use a patched kernel,
621     </emphasis> for more information see
622     <xref linkend="enabling_disk_quotas"/>.</para>
623     <para condition="l2E"><literal>df</literal> and <literal>lfs df</literal>
624     will return the amount of space available to that project rather than the
625     total filesystem space, if the project quota limit is smaller.
626     <emphasis role="bold"> Only client need be upgraded to Lustre
627     release 2.14 or later to apply this new behavior</emphasis>.</para>
628   </section>
629   <section xml:id="granted_cache_and_quota_limits">
630     <title>
631     <indexterm>
632       <primary>Quotas</primary>
633       <secondary>known issues</secondary>
634     </indexterm>Granted Cache and Quota Limits</title>
635     <para>In a Lustre file system, granted cache does not respect quota limits.
636     In this situation, OSTs grant cache to a Lustre client to accelerate I/O.
637     Granting cache causes writes to be successful in OSTs, even if they exceed
638     the quota limits, and will overwrite them.</para>
639     <para>The sequence is:</para>
640     <orderedlist>
641       <listitem>
642         <para>A user writes files to the Lustre file system.</para>
643       </listitem>
644       <listitem>
645         <para>If the Lustre client has enough granted cache, then it returns
646         'success' to users and arranges the writes to the OSTs.</para>
647       </listitem>
648       <listitem>
649         <para>Because Lustre clients have delivered success to users, the OSTs
650         cannot fail these writes.</para>
651       </listitem>
652     </orderedlist>
653     <para>Because of granted cache, writes always overwrite quota limitations.
654     For example, if you set a 400 GB quota on user A and use IOR to write for
655     user A from a bundle of clients, you will write much more data than 400 GB,
656     and cause an out-of-quota error (
657     <literal>EDQUOT</literal>).</para>
658     <note>
659       <para>The effect of granted cache on quota limits can be mitigated, but
660       not eradicated. Reduce the maximum amount of dirty data on the clients
661       (minimal value is 1MB):</para>
662       <itemizedlist>
663         <listitem>
664           <para>
665             <literal>lctl set_param osc.*.max_dirty_mb=8</literal>
666           </para>
667         </listitem>
668       </itemizedlist>
669     </note>
670   </section>
671   <section xml:id="lustre_quota_statistics">
672     <title>
673     <indexterm>
674       <primary>Quotas</primary>
675       <secondary>statistics</secondary>
676     </indexterm>Lustre Quota Statistics</title>
677     <para>The Lustre software includes statistics that monitor quota activity,
678     such as the kinds of quota RPCs sent during a specific period, the average
679     time to complete the RPCs, etc. These statistics are useful to measure
680     performance of a Lustre file system.</para>
681     <para>Each quota statistic consists of a quota event and
682     <literal>min_time</literal>,
683     <literal>max_time</literal> and
684     <literal>sum_time</literal> values for the event.</para>
685     <informaltable frame="all">
686       <tgroup cols="2">
687         <colspec colname="c1" colwidth="50*" />
688         <colspec colname="c2" colwidth="50*" />
689         <thead>
690           <row>
691             <entry>
692               <para>
693                 <emphasis role="bold">Quota Event</emphasis>
694               </para>
695             </entry>
696             <entry>
697               <para>
698                 <emphasis role="bold">Description</emphasis>
699               </para>
700             </entry>
701           </row>
702         </thead>
703         <tbody>
704           <row>
705             <entry>
706               <para>
707                 <emphasis role="bold">sync_acq_req</emphasis>
708               </para>
709             </entry>
710             <entry>
711               <para>Quota slaves send a acquiring_quota request and wait for
712               its return.</para>
713             </entry>
714           </row>
715           <row>
716             <entry>
717               <para>
718                 <emphasis role="bold">sync_rel_req</emphasis>
719               </para>
720             </entry>
721             <entry>
722               <para>Quota slaves send a releasing_quota request and wait for
723               its return.</para>
724             </entry>
725           </row>
726           <row>
727             <entry>
728               <para>
729                 <emphasis role="bold">async_acq_req</emphasis>
730               </para>
731             </entry>
732             <entry>
733               <para>Quota slaves send an acquiring_quota request and do not
734               wait for its return.</para>
735             </entry>
736           </row>
737           <row>
738             <entry>
739               <para>
740                 <emphasis role="bold">async_rel_req</emphasis>
741               </para>
742             </entry>
743             <entry>
744               <para>Quota slaves send a releasing_quota request and do not wait
745               for its return.</para>
746             </entry>
747           </row>
748           <row>
749             <entry>
750               <para>
751                 <emphasis role="bold">wait_for_blk_quota
752                 (lquota_chkquota)</emphasis>
753               </para>
754             </entry>
755             <entry>
756               <para>Before data is written to OSTs, the OSTs check if the
757               remaining block quota is sufficient. This is done in the
758               lquota_chkquota function.</para>
759             </entry>
760           </row>
761           <row>
762             <entry>
763               <para>
764                 <emphasis role="bold">wait_for_ino_quota
765                 (lquota_chkquota)</emphasis>
766               </para>
767             </entry>
768             <entry>
769               <para>Before files are created on the MDS, the MDS checks if the
770               remaining inode quota is sufficient. This is done in the
771               lquota_chkquota function.</para>
772             </entry>
773           </row>
774           <row>
775             <entry>
776               <para>
777                 <emphasis role="bold">wait_for_blk_quota
778                 (lquota_pending_commit)</emphasis>
779               </para>
780             </entry>
781             <entry>
782               <para>After blocks are written to OSTs, relative quota
783               information is updated. This is done in the lquota_pending_commit
784               function.</para>
785             </entry>
786           </row>
787           <row>
788             <entry>
789               <para>
790                 <emphasis role="bold">wait_for_ino_quota
791                 (lquota_pending_commit)</emphasis>
792               </para>
793             </entry>
794             <entry>
795               <para>After files are created, relative quota information is
796               updated. This is done in the lquota_pending_commit
797               function.</para>
798             </entry>
799           </row>
800           <row>
801             <entry>
802               <para>
803                 <emphasis role="bold">wait_for_pending_blk_quota_req
804                 (qctxt_wait_pending_dqacq)</emphasis>
805               </para>
806             </entry>
807             <entry>
808               <para>On the MDS or OSTs, there is one thread sending a quota
809               request for a specific UID/GID for block quota at any time. At
810               that time, if other threads need to do this too, they should
811               wait. This is done in the qctxt_wait_pending_dqacq
812               function.</para>
813             </entry>
814           </row>
815           <row>
816             <entry>
817               <para>
818                 <emphasis role="bold">wait_for_pending_ino_quota_req
819                 (qctxt_wait_pending_dqacq)</emphasis>
820               </para>
821             </entry>
822             <entry>
823               <para>On the MDS, there is one thread sending a quota request for
824               a specific UID/GID for inode quota at any time. If other threads
825               need to do this too, they should wait. This is done in the
826               qctxt_wait_pending_dqacq function.</para>
827             </entry>
828           </row>
829           <row>
830             <entry>
831               <para>
832                 <emphasis role="bold">nowait_for_pending_blk_quota_req
833                 (qctxt_wait_pending_dqacq)</emphasis>
834               </para>
835             </entry>
836             <entry>
837               <para>On the MDS or OSTs, there is one thread sending a quota
838               request for a specific UID/GID for block quota at any time. When
839               threads enter qctxt_wait_pending_dqacq, they do not need to wait.
840               This is done in the qctxt_wait_pending_dqacq function.</para>
841             </entry>
842           </row>
843           <row>
844             <entry>
845               <para>
846                 <emphasis role="bold">nowait_for_pending_ino_quota_req
847                 (qctxt_wait_pending_dqacq)</emphasis>
848               </para>
849             </entry>
850             <entry>
851               <para>On the MDS, there is one thread sending a quota request for
852               a specific UID/GID for inode quota at any time. When threads
853               enter qctxt_wait_pending_dqacq, they do not need to wait. This is
854               done in the qctxt_wait_pending_dqacq function.</para>
855             </entry>
856           </row>
857           <row>
858             <entry>
859               <para>
860                 <emphasis role="bold">quota_ctl</emphasis>
861               </para>
862             </entry>
863             <entry>
864               <para>The quota_ctl statistic is generated when lfs
865               <literal>setquota</literal>,
866               <literal>lfs quota</literal> and so on, are issued.</para>
867             </entry>
868           </row>
869           <row>
870             <entry>
871               <para>
872                 <emphasis role="bold">adjust_qunit</emphasis>
873               </para>
874             </entry>
875             <entry>
876               <para>Each time qunit is adjusted, it is counted.</para>
877             </entry>
878           </row>
879         </tbody>
880       </tgroup>
881     </informaltable>
882     <section remap="h3">
883       <title>Interpreting Quota Statistics</title>
884       <para>Quota statistics are an important measure of the performance of a
885       Lustre file system. Interpreting these statistics correctly can help you
886       diagnose problems with quotas, and may indicate adjustments to improve
887       system performance.</para>
888       <para>For example, if you run this command on the OSTs:</para>
889       <screen>
890 lctl get_param lquota.testfs-OST0000.stats
891 </screen>
892       <para>You will get a result similar to this:</para>
893       <screen>
894 snapshot_time                                1219908615.506895 secs.usecs
895 async_acq_req                              1 samples [us]  32 32 32
896 async_rel_req                              1 samples [us]  5 5 5
897 nowait_for_pending_blk_quota_req(qctxt_wait_pending_dqacq) 1 samples [us] 2\
898  2 2
899 quota_ctl                          4 samples [us]  80 3470 4293
900 adjust_qunit                               1 samples [us]  70 70 70
901 ....
902 </screen>
903       <para>In the first line,
904       <literal>snapshot_time</literal> indicates when the statistics were taken.
905       The remaining lines list the quota events and their associated
906       data.</para>
907       <para>In the second line, the
908       <literal>async_acq_req</literal> event occurs one time. The
909       <literal>min_time</literal>,
910       <literal>max_time</literal> and
911       <literal>sum_time</literal> statistics for this event are 32, 32 and 32,
912       respectively. The unit is microseconds (μs).</para>
913       <para>In the fifth line, the quota_ctl event occurs four times. The
914       <literal>min_time</literal>,
915       <literal>max_time</literal> and
916       <literal>sum_time</literal> statistics for this event are 80, 3470 and
917       4293, respectively. The unit is microseconds (μs).</para>
918     </section>
919   </section>
920   <section xml:id="quota_pools" condition='l2E'>
921     <title>
922     <indexterm>
923       <primary>Quotas</primary>
924       <secondary>pools</secondary>
925     </indexterm>Pool Quotas</title>
926     <para>
927     OST Pool Quotas feature gives an ability to limit user's (group's/project's)
928     disk usage at OST pool level. Each OST Pool Quota (PQ) maps directly to the
929     OST pool of the same name. Thus PQ could be tuned with standard <literal>
930     lctl pool_new/add/remove/erase</literal> commands. All PQ are subset of a
931     global pool that includes all OSTs and MDTs (DOM case).
932     It may be initially confusing to be prevented from using "all of" one quota
933     due to a different quota setting. In Lustre, a quota is a limit, not a right
934     to use an amount. You don't always get to use your quota - an OST may be out
935     of space, or some other quota is limiting. For example, if there is an inode
936     quota and a space quota, and you hit your inode limit while you still have
937     plenty of space, you can't use the space. For another example, quotas may
938     easily be over-allocated: everyone gets 10PB of quota, in a 15PB system.
939     That does not give them the right to use 10PB, it means they cannot use more
940     than 10PB. They may very well get ENOSPC long before that - but they will not
941     get EDQUOT. This behavior already exists in Lustre today, but pool quotas
942     increase the number of limits in play: user, group or project global space quota
943     and now all of those limits can also be defined for each pool. In all cases,
944     the net effect is that the actual amount of space you can use is limited to the
945     smallest (min) quota out of everything that is applicable.
946     See more details in
947     <link xl:href="http://wiki.lustre.org/OST_Pool_Quotas_HLD">
948     OST Pool Quotas HLD</link>
949     </para>
950     <section remap="h3">
951       <title>DOM and MDT pools</title>
952       <para>
953       From Quota Master point of view, "data" MDTs are regular members together
954       with OSTs. However Pool Quotas support only OSTs as there is currently
955       no mechanism to group MDTs in pools.
956       </para>
957     </section>
958     <section remap="h3">
959       <title>Lfs quota/setquota options to setup quota pools</title>
960       <para>
961       The same long option <literal>--pool</literal> is used to setup and report
962       Pool Quotas with <literal>lfs setquota</literal> and <literal>lfs setquota</literal>.
963       </para>
964       <para>
965       <literal>lfs setquota --pool <replaceable>pool_name</replaceable></literal>
966       is used to set the block and soft usage limit for the user, group, or
967       project for the specified pool name.
968       </para>
969       <para>
970       <literal>lfs quota --pool <replaceable>pool_name</replaceable></literal>
971       shows the user, group, or project usage for the specified pool name.
972       </para>
973     </section>
974     <section remap="h3">
975       <title>Quota pools interoperability</title>
976       <para>
977       Both client and server should have at least Lustre 2.14 to support Pool Quotas.
978       </para>
979       <note>
980        <para>Pool Quotas may be able to work with older clients if server
981        supports Pool Quotas. Pool quotas cannot be viewed or modified by
982        older clients. Since the quota enforcement is done on the servers, only
983        a single client is needed to configure the quotas. This could be done by
984        mounting a client directly on the MDS if needed.
985        </para>
986       </note>
987     </section>
988     <section remap="h3">
989       <title>Pool Quotas Hard Limit setup example</title>
990       <para>
991       Let's imagine you need to setup quota usage for already existed OST pool
992       <literal>flash_pool</literal>:
993       </para>
994       <screen>
995 # it is a limit for global pool. PQ don't work properly without that
996 lfs setquota -u <replaceable>ivan</replaceable> -B<replaceable>100T /mnt/testfs</replaceable>
997 # set 1TiB block hard limit for ivan in a flash_pool
998 lfs setquota -u <replaceable>ivan</replaceable> --pool <replaceable>flash_pool</replaceable> -B<replaceable>1T /mnt/testfs</replaceable>
999       </screen>
1000       <para>
1001       <note>
1002        <para>System-side hard limit is required before setting Quota Pool limit.
1003        If you do not need to limit user at all OSTs and MDTs at system,
1004        only per pool, it is recommended to set some unrealistic big hard limit.
1005        Without a global limit in place the Quota Pool limit will not be enforced.
1006        No matter hard or soft global limit - at least one of them should be set.
1007        </para>
1008       </note>
1009       </para>
1010     </section>
1011     <section remap="h3">
1012       <title>Pool Quotas Soft Limit setup example</title>
1013       <screen>
1014 # notify OSTs to enforce quota for ivan
1015 lfs setquota -u <replaceable>ivan</replaceable> -B<replaceable>10T /mnt/testfs</replaceable>
1016 # soft limit 10MiB for ivan in a pool flash_pool
1017 lfs setquota -u <replaceable>ivan</replaceable> --pool <replaceable>flash_pool</replaceable> -b<replaceable>1T /mnt/testfs</replaceable>
1018 # set block grace 600 s for all users at flash_pool
1019 lfs setquota -t -u --block-grace <replaceable>600</replaceable> --pool <replaceable>flash_pool /mnt/testfs</replaceable>
1020       </screen>
1021     </section>
1022   </section>
1023 </chapter>
1024 <!--
1025   vim:expandtab:shiftwidth=2:tabstop=8:
1026   -->