Whamcloud - gitweb
LUDOC-11 osc: document tunable parameters
[doc/manual.git] / LustreProc.xml
1 <?xml version='1.0' encoding='UTF-8'?>
2 <chapter xmlns="http://docbook.org/ns/docbook" xmlns:xl="http://www.w3.org/1999/xlink" version="5.0"
3   xml:lang="en-US" xml:id="lustreproc">
4   <title xml:id="lustreproc.title">Lustre Parameters</title>
5   <para>The <literal>/proc</literal> and <literal>/sys</literal> file systems
6   acts as an interface to internal data structures in the kernel. This chapter
7   describes parameters and tunables that are useful for optimizing and
8   monitoring aspects of a Lustre file system. It includes these sections:</para>
9   <itemizedlist>
10     <listitem>
11       <para><xref linkend="dbdoclet.50438271_83523"/></para>
12       <para>.</para>
13     </listitem>
14   </itemizedlist>
15   <section>
16     <title>Introduction to Lustre Parameters</title>
17     <para>Lustre parameters and statistics files provide an interface to
18     internal data structures in the kernel that enables monitoring and
19     tuning of many aspects of Lustre file system and application performance.
20     These data structures include settings and metrics for components such
21     as memory, networking, file systems, and kernel housekeeping routines,
22     which are available throughout the hierarchical file layout.
23     </para>
24     <para>Typically, metrics are accessed via <literal>lctl get_param</literal>
25     files and settings are changed by via <literal>lctl set_param</literal>.
26     Some data is server-only, some data is client-only, and some data is
27     exported from the client to the server and is thus duplicated in both
28     locations.</para>
29     <note>
30       <para>In the examples in this chapter, <literal>#</literal> indicates
31       a command is entered as root.  Lustre servers are named according to the
32       convention <literal><replaceable>fsname</replaceable>-<replaceable>MDT|OSTnumber</replaceable></literal>.
33         The standard UNIX wildcard designation (*) is used.</para>
34     </note>
35     <para>Some examples are shown below:</para>
36     <itemizedlist>
37       <listitem>
38         <para> To obtain data from a Lustre client:</para>
39         <screen># lctl list_param osc.*
40 osc.testfs-OST0000-osc-ffff881071d5cc00
41 osc.testfs-OST0001-osc-ffff881071d5cc00
42 osc.testfs-OST0002-osc-ffff881071d5cc00
43 osc.testfs-OST0003-osc-ffff881071d5cc00
44 osc.testfs-OST0004-osc-ffff881071d5cc00
45 osc.testfs-OST0005-osc-ffff881071d5cc00
46 osc.testfs-OST0006-osc-ffff881071d5cc00
47 osc.testfs-OST0007-osc-ffff881071d5cc00
48 osc.testfs-OST0008-osc-ffff881071d5cc00</screen>
49         <para>In this example, information about OST connections available
50         on a client is displayed (indicated by "osc").</para>
51       </listitem>
52     </itemizedlist>
53     <itemizedlist>
54       <listitem>
55         <para> To see multiple levels of parameters, use multiple
56           wildcards:<screen># lctl list_param osc.*.*
57 osc.testfs-OST0000-osc-ffff881071d5cc00.active
58 osc.testfs-OST0000-osc-ffff881071d5cc00.blocksize
59 osc.testfs-OST0000-osc-ffff881071d5cc00.checksum_type
60 osc.testfs-OST0000-osc-ffff881071d5cc00.checksums
61 osc.testfs-OST0000-osc-ffff881071d5cc00.connect_flags
62 osc.testfs-OST0000-osc-ffff881071d5cc00.contention_seconds
63 osc.testfs-OST0000-osc-ffff881071d5cc00.cur_dirty_bytes
64 ...
65 osc.testfs-OST0000-osc-ffff881071d5cc00.rpc_stats</screen></para>
66       </listitem>
67     </itemizedlist>
68     <itemizedlist>
69       <listitem>
70         <para> To view a specific file, use <literal>lctl get_param</literal>:
71           <screen># lctl get_param osc.lustre-OST0000*.rpc_stats</screen></para>
72       </listitem>
73     </itemizedlist>
74     <para>For more information about using <literal>lctl</literal>, see <xref
75         xmlns:xlink="http://www.w3.org/1999/xlink" linkend="dbdoclet.50438194_51490"/>.</para>
76     <para>Data can also be viewed using the <literal>cat</literal> command
77     with the full path to the file. The form of the <literal>cat</literal>
78     command is similar to that of the <literal>lctl get_param</literal>
79     command with some differences.  Unfortunately, as the Linux kernel has
80     changed over the years, the location of statistics and parameter files
81     has also changed, which means that the Lustre parameter files may be
82     located in either the <literal>/proc</literal> directory, in the
83     <literal>/sys</literal> directory, and/or in the
84     <literal>/sys/kernel/debug</literal> directory, depending on the kernel
85     version and the Lustre version being used.  The <literal>lctl</literal>
86     command insulates scripts from these changes and is preferred over direct
87     file access, unless as part of a high-performance monitoring system.
88     In the <literal>cat</literal> command:</para>
89     <itemizedlist>
90       <listitem>
91         <para>Replace the dots in the path with slashes.</para>
92       </listitem>
93       <listitem>
94         <para>Prepend the path with the appropriate directory component:
95           <screen>/{proc,sys}/{fs,sys}/{lustre,lnet}</screen></para>
96       </listitem>
97     </itemizedlist>
98     <para>For example, an <literal>lctl get_param</literal> command may look like
99       this:<screen># lctl get_param osc.*.uuid
100 osc.testfs-OST0000-osc-ffff881071d5cc00.uuid=594db456-0685-bd16-f59b-e72ee90e9819
101 osc.testfs-OST0001-osc-ffff881071d5cc00.uuid=594db456-0685-bd16-f59b-e72ee90e9819
102 ...</screen></para>
103     <para>The equivalent <literal>cat</literal> command may look like this:
104      <screen># cat /proc/fs/lustre/osc/*/uuid
105 594db456-0685-bd16-f59b-e72ee90e9819
106 594db456-0685-bd16-f59b-e72ee90e9819
107 ...</screen></para>
108     <para>or like this:
109      <screen># cat /sys/fs/lustre/osc/*/uuid
110 594db456-0685-bd16-f59b-e72ee90e9819
111 594db456-0685-bd16-f59b-e72ee90e9819
112 ...</screen></para>
113     <para>The <literal>llstat</literal> utility can be used to monitor some
114     Lustre file system I/O activity over a specified time period. For more
115     details, see
116     <xref xmlns:xlink="http://www.w3.org/1999/xlink" linkend="dbdoclet.50438219_23232"/></para>
117     <para>Some data is imported from attached clients and is available in a
118     directory called <literal>exports</literal> located in the corresponding
119     per-service directory on a Lustre server. For example:
120     <screen>oss:/root# lctl list_param obdfilter.testfs-OST0000.exports.*
121 # hash ldlm_stats stats uuid</screen></para>
122     <section remap="h3">
123       <title>Identifying Lustre File Systems and Servers</title>
124       <para>Several <literal>/proc</literal> files on the MGS list existing
125       Lustre file systems and file system servers. The examples below are for
126       a Lustre file system called
127           <literal>testfs</literal> with one MDT and three OSTs.</para>
128       <itemizedlist>
129         <listitem>
130           <para> To view all known Lustre file systems, enter:</para>
131           <screen>mgs# lctl get_param mgs.*.filesystems
132 testfs</screen>
133         </listitem>
134         <listitem>
135           <para> To view the names of the servers in a file system in which least one server is
136             running,
137             enter:<screen>lctl get_param mgs.*.live.<replaceable>&lt;filesystem name></replaceable></screen></para>
138           <para>For example:</para>
139           <screen>mgs# lctl get_param mgs.*.live.testfs
140 fsname: testfs
141 flags: 0x20     gen: 45
142 testfs-MDT0000
143 testfs-OST0000
144 testfs-OST0001
145 testfs-OST0002 
146
147 Secure RPC Config Rules: 
148
149 imperative_recovery_state:
150     state: startup
151     nonir_clients: 0
152     nidtbl_version: 6
153     notify_duration_total: 0.001000
154     notify_duation_max:  0.001000
155     notify_count: 4</screen>
156         </listitem>
157         <listitem>
158           <para>To view the names of all live servers in the file system as listed in
159               <literal>/proc/fs/lustre/devices</literal>, enter:</para>
160           <screen># lctl device_list
161 0 UP mgs MGS MGS 11
162 1 UP mgc MGC192.168.10.34@tcp 1f45bb57-d9be-2ddb-c0b0-5431a49226705
163 2 UP mdt MDS MDS_uuid 3
164 3 UP lov testfs-mdtlov testfs-mdtlov_UUID 4
165 4 UP mds testfs-MDT0000 testfs-MDT0000_UUID 7
166 5 UP osc testfs-OST0000-osc testfs-mdtlov_UUID 5
167 6 UP osc testfs-OST0001-osc testfs-mdtlov_UUID 5
168 7 UP lov testfs-clilov-ce63ca00 08ac6584-6c4a-3536-2c6d-b36cf9cbdaa04
169 8 UP mdc testfs-MDT0000-mdc-ce63ca00 08ac6584-6c4a-3536-2c6d-b36cf9cbdaa05
170 9 UP osc testfs-OST0000-osc-ce63ca00 08ac6584-6c4a-3536-2c6d-b36cf9cbdaa05
171 10 UP osc testfs-OST0001-osc-ce63ca00 08ac6584-6c4a-3536-2c6d-b36cf9cbdaa05</screen>
172           <para>The information provided on each line includes:</para>
173           <para> -  Device number</para>
174           <para> - Device status (UP, INactive, or STopping) </para>
175           <para> -  Device name</para>
176           <para> -  Device UUID</para>
177           <para> -  Reference count (how many users this device has)</para>
178         </listitem>
179         <listitem>
180           <para>To display the name of any server, view the device
181             label:<screen>mds# e2label /dev/sda
182 testfs-MDT0000</screen></para>
183         </listitem>
184       </itemizedlist>
185     </section>
186   </section>
187   <section>
188     <title>Tuning Multi-Block Allocation (mballoc)</title>
189     <para>Capabilities supported by <literal>mballoc</literal> include:</para>
190     <itemizedlist>
191       <listitem>
192         <para> Pre-allocation for single files to help to reduce fragmentation.</para>
193       </listitem>
194       <listitem>
195         <para> Pre-allocation for a group of files to enable packing of small files into large,
196           contiguous chunks.</para>
197       </listitem>
198       <listitem>
199         <para> Stream allocation to help decrease the seek rate.</para>
200       </listitem>
201     </itemizedlist>
202     <para>The following <literal>mballoc</literal> tunables are available:</para>
203     <informaltable frame="all">
204       <tgroup cols="2">
205         <colspec colname="c1" colwidth="30*"/>
206         <colspec colname="c2" colwidth="70*"/>
207         <thead>
208           <row>
209             <entry>
210               <para><emphasis role="bold">Field</emphasis></para>
211             </entry>
212             <entry>
213               <para><emphasis role="bold">Description</emphasis></para>
214             </entry>
215           </row>
216         </thead>
217         <tbody>
218           <row>
219             <entry>
220               <para>
221                 <literal>mb_max_to_scan</literal></para>
222             </entry>
223             <entry>
224               <para>Maximum number of free chunks that <literal>mballoc</literal> finds before a
225                 final decision to avoid a livelock situation.</para>
226             </entry>
227           </row>
228           <row>
229             <entry>
230               <para>
231                 <literal>mb_min_to_scan</literal></para>
232             </entry>
233             <entry>
234               <para>Minimum number of free chunks that <literal>mballoc</literal> searches before
235                 picking the best chunk for allocation. This is useful for small requests to reduce
236                 fragmentation of big free chunks.</para>
237             </entry>
238           </row>
239           <row>
240             <entry>
241               <para>
242                 <literal>mb_order2_req</literal></para>
243             </entry>
244             <entry>
245               <para>For requests equal to 2^N, where N &gt;= <literal>mb_order2_req</literal>, a
246                 fast search is done using a base 2 buddy allocation service.</para>
247             </entry>
248           </row>
249           <row>
250             <entry>
251               <para>
252                 <literal>mb_small_req</literal></para>
253             </entry>
254             <entry morerows="1">
255               <para><literal>mb_small_req</literal> - Defines (in MB) the upper bound of "small
256                 requests".</para>
257               <para><literal>mb_large_req</literal> - Defines (in MB) the lower bound of "large
258                 requests".</para>
259               <para>Requests are handled differently based on size:<itemizedlist>
260                   <listitem>
261                     <para>&lt; <literal>mb_small_req</literal> - Requests are packed together to
262                       form large, aggregated requests.</para>
263                   </listitem>
264                   <listitem>
265                     <para>> <literal>mb_small_req</literal> and &lt; <literal>mb_large_req</literal>
266                       - Requests are primarily allocated linearly.</para>
267                   </listitem>
268                   <listitem>
269                     <para>> <literal>mb_large_req</literal> - Requests are allocated since hard disk
270                       seek time is less of a concern in this case.</para>
271                   </listitem>
272                 </itemizedlist></para>
273               <para>In general, small requests are combined to create larger requests, which are
274                 then placed close to one another to minimize the number of seeks required to access
275                 the data.</para>
276             </entry>
277           </row>
278           <row>
279             <entry>
280               <para>
281                 <literal>mb_large_req</literal></para>
282             </entry>
283           </row>
284           <row>
285             <entry>
286               <para>
287                 <literal>mb_prealloc_table</literal></para>
288             </entry>
289             <entry>
290               <para>A table of values used to preallocate space when a new request is received. By
291                 default, the table looks like
292                 this:<screen>prealloc_table
293 4 8 16 32 64 128 256 512 1024 2048 </screen></para>
294               <para>When a new request is received, space is preallocated at the next higher
295                 increment specified in the table. For example, for requests of less than 4 file
296                 system blocks, 4 blocks of space are preallocated; for requests between 4 and 8, 8
297                 blocks are preallocated; and so forth</para>
298               <para>Although customized values can be entered in the table, the performance of
299                 general usage file systems will not typically be improved by modifying the table (in
300                 fact, in ext4 systems, the table values are fixed).  However, for some specialized
301                 workloads, tuning the <literal>prealloc_table</literal> values may result in smarter
302                 preallocation decisions. </para>
303             </entry>
304           </row>
305           <row>
306             <entry>
307               <para>
308                 <literal>mb_group_prealloc</literal></para>
309             </entry>
310             <entry>
311               <para>The amount of space (in kilobytes) preallocated for groups of small
312                 requests.</para>
313             </entry>
314           </row>
315         </tbody>
316       </tgroup>
317     </informaltable>
318     <para>Buddy group cache information found in
319           <literal>/proc/fs/ldiskfs/<replaceable>disk_device</replaceable>/mb_groups</literal> may
320       be useful for assessing on-disk fragmentation. For
321       example:<screen>cat /proc/fs/ldiskfs/loop0/mb_groups 
322 #group: free free frags first pa [ 2^0 2^1 2^2 2^3 2^4 2^5 2^6 2^7 2^8 2^9 
323      2^10 2^11 2^12 2^13] 
324 #0    : 2936 2936 1     42    0  [ 0   0   0   1   1   1   1   2   0   1 
325      2    0    0    0   ]</screen></para>
326     <para>In this example, the columns show:<itemizedlist>
327         <listitem>
328           <para>#group number</para>
329         </listitem>
330         <listitem>
331           <para>Available blocks in the group</para>
332         </listitem>
333         <listitem>
334           <para>Blocks free on a disk</para>
335         </listitem>
336         <listitem>
337           <para>Number of free fragments</para>
338         </listitem>
339         <listitem>
340           <para>First free block in the group</para>
341         </listitem>
342         <listitem>
343           <para>Number of preallocated chunks (not blocks)</para>
344         </listitem>
345         <listitem>
346           <para>A series of available chunks of different sizes</para>
347         </listitem>
348       </itemizedlist></para>
349   </section>
350   <section>
351     <title>Monitoring Lustre File System I/O</title>
352     <para>A number of system utilities are provided to enable collection of data related to I/O
353       activity in a Lustre file system. In general, the data collected describes:</para>
354     <itemizedlist>
355       <listitem>
356         <para> Data transfer rates and throughput of inputs and outputs external to the Lustre file
357           system, such as network requests or disk I/O operations performed</para>
358       </listitem>
359       <listitem>
360         <para> Data about the throughput or transfer rates of internal Lustre file system data, such
361           as locks or allocations. </para>
362       </listitem>
363     </itemizedlist>
364     <note>
365       <para>It is highly recommended that you complete baseline testing for your Lustre file system
366         to determine normal I/O activity for your hardware, network, and system workloads. Baseline
367         data will allow you to easily determine when performance becomes degraded in your system.
368         Two particularly useful baseline statistics are:</para>
369       <itemizedlist>
370         <listitem>
371           <para><literal>brw_stats</literal> â€“ Histogram data characterizing I/O requests to the
372             OSTs. For more details, see <xref xmlns:xlink="http://www.w3.org/1999/xlink"
373               linkend="dbdoclet.50438271_55057"/>.</para>
374         </listitem>
375         <listitem>
376           <para><literal>rpc_stats</literal> â€“ Histogram data showing information about RPCs made by
377             clients. For more details, see <xref xmlns:xlink="http://www.w3.org/1999/xlink"
378               linkend="MonitoringClientRCPStream"/>.</para>
379         </listitem>
380       </itemizedlist>
381     </note>
382     <section remap="h3" xml:id="MonitoringClientRCPStream">
383       <title><indexterm>
384           <primary>proc</primary>
385           <secondary>watching RPC</secondary>
386         </indexterm>Monitoring the Client RPC Stream</title>
387       <para>The <literal>rpc_stats</literal> file contains histogram data showing information about
388         remote procedure calls (RPCs) that have been made since this file was last cleared. The
389         histogram data can be cleared by writing any value into the <literal>rpc_stats</literal>
390         file.</para>
391       <para><emphasis role="italic"><emphasis role="bold">Example:</emphasis></emphasis></para>
392       <screen># lctl get_param osc.testfs-OST0000-osc-ffff810058d2f800.rpc_stats
393 snapshot_time:            1372786692.389858 (secs.usecs)
394 read RPCs in flight:      0
395 write RPCs in flight:     1
396 dio read RPCs in flight:  0
397 dio write RPCs in flight: 0
398 pending write pages:      256
399 pending read pages:       0
400
401                      read                   write
402 pages per rpc   rpcs   % cum % |       rpcs   % cum %
403 1:                 0   0   0   |          0   0   0
404 2:                 0   0   0   |          1   0   0
405 4:                 0   0   0   |          0   0   0
406 8:                 0   0   0   |          0   0   0
407 16:                0   0   0   |          0   0   0
408 32:                0   0   0   |          2   0   0
409 64:                0   0   0   |          2   0   0
410 128:               0   0   0   |          5   0   0
411 256:             850 100 100   |      18346  99 100
412
413                      read                   write
414 rpcs in flight  rpcs   % cum % |       rpcs   % cum %
415 0:               691  81  81   |       1740   9   9
416 1:                48   5  86   |        938   5  14
417 2:                29   3  90   |       1059   5  20
418 3:                17   2  92   |       1052   5  26
419 4:                13   1  93   |        920   5  31
420 5:                12   1  95   |        425   2  33
421 6:                10   1  96   |        389   2  35
422 7:                30   3 100   |      11373  61  97
423 8:                 0   0 100   |        460   2 100
424
425                      read                   write
426 offset          rpcs   % cum % |       rpcs   % cum %
427 0:               850 100 100   |      18347  99  99
428 1:                 0   0 100   |          0   0  99
429 2:                 0   0 100   |          0   0  99
430 4:                 0   0 100   |          0   0  99
431 8:                 0   0 100   |          0   0  99
432 16:                0   0 100   |          1   0  99
433 32:                0   0 100   |          1   0  99
434 64:                0   0 100   |          3   0  99
435 128:               0   0 100   |          4   0 100
436
437 </screen>
438       <para>The header information includes:</para>
439       <itemizedlist>
440         <listitem>
441           <para><literal>snapshot_time</literal> - UNIX epoch instant the file was read.</para>
442         </listitem>
443         <listitem>
444           <para><literal>read RPCs in flight</literal> - Number of read RPCs issued by the OSC, but
445             not complete at the time of the snapshot. This value should always be less than or equal
446             to <literal>max_rpcs_in_flight</literal>.</para>
447         </listitem>
448         <listitem>
449           <para><literal>write RPCs in flight</literal> - Number of write RPCs issued by the OSC,
450             but not complete at the time of the snapshot. This value should always be less than or
451             equal to <literal>max_rpcs_in_flight</literal>.</para>
452         </listitem>
453         <listitem>
454           <para><literal>dio read RPCs in flight</literal> - Direct I/O (as opposed to block I/O)
455             read RPCs issued but not completed at the time of the snapshot.</para>
456         </listitem>
457         <listitem>
458           <para><literal>dio write RPCs in flight</literal> - Direct I/O (as opposed to block I/O)
459             write RPCs issued but not completed at the time of the snapshot.</para>
460         </listitem>
461         <listitem>
462           <para><literal>pending write pages</literal>  - Number of pending write pages that have
463             been queued for I/O in the OSC.</para>
464         </listitem>
465         <listitem>
466           <para><literal>pending read pages</literal> - Number of pending read pages that have been
467             queued for I/O in the OSC.</para>
468         </listitem>
469       </itemizedlist>
470       <para>The tabular data is described in the table below. Each row in the table shows the number
471         of reads or writes (<literal>ios</literal>) occurring for the statistic, the relative
472         percentage (<literal>%</literal>) of total reads or writes, and the cumulative percentage
473           (<literal>cum %</literal>) to that point in the table for the statistic.</para>
474       <informaltable frame="all">
475         <tgroup cols="2">
476           <colspec colname="c1" colwidth="40*"/>
477           <colspec colname="c2" colwidth="60*"/>
478           <thead>
479             <row>
480               <entry>
481                 <para><emphasis role="bold">Field</emphasis></para>
482               </entry>
483               <entry>
484                 <para><emphasis role="bold">Description</emphasis></para>
485               </entry>
486             </row>
487           </thead>
488           <tbody>
489             <row>
490               <entry>
491                 <para> pages per RPC</para>
492               </entry>
493               <entry>
494                 <para>Shows cumulative RPC reads and writes organized according to the number of
495                   pages in the RPC. A single page RPC increments the <literal>0:</literal>
496                   row.</para>
497               </entry>
498             </row>
499             <row>
500               <entry>
501                 <para> RPCs in flight</para>
502               </entry>
503               <entry>
504                 <para> Shows the number of RPCs that are pending when an RPC is sent. When the first
505                   RPC is sent, the <literal>0:</literal> row is incremented. If the first RPC is
506                   sent while another RPC is pending, the <literal>1:</literal> row is incremented
507                   and so on. </para>
508               </entry>
509             </row>
510             <row>
511               <entry>
512                 <para> offset</para>
513               </entry>
514               <entry>
515                 <para> The page index of the first page read from or written to the object by the
516                   RPC. </para>
517               </entry>
518             </row>
519           </tbody>
520         </tgroup>
521       </informaltable>
522       <para><emphasis role="italic"><emphasis role="bold">Analysis:</emphasis></emphasis></para>
523       <para>This table provides a way to visualize the concurrency of the RPC stream. Ideally, you
524         will see a large clump around the <literal>max_rpcs_in_flight value</literal>, which shows
525         that the network is being kept busy.</para>
526       <para>For information about optimizing the client I/O RPC stream, see <xref
527           xmlns:xlink="http://www.w3.org/1999/xlink" linkend="TuningClientIORPCStream"/>.</para>
528     </section>
529     <section xml:id="lustreproc.clientstats" remap="h3">
530       <title><indexterm>
531           <primary>proc</primary>
532           <secondary>client stats</secondary>
533         </indexterm>Monitoring Client Activity</title>
534       <para>The <literal>stats</literal> file maintains statistics accumulate during typical
535         operation of a client across the VFS interface of the Lustre file system. Only non-zero
536         parameters are displayed in the file. </para>
537       <para>Client statistics are enabled by default.</para>
538       <note>
539         <para>Statistics for all mounted file systems can be discovered by
540           entering:<screen>lctl get_param llite.*.stats</screen></para>
541       </note>
542       <para><emphasis role="italic"><emphasis role="bold">Example:</emphasis></emphasis></para>
543       <screen>client# lctl get_param llite.*.stats
544 snapshot_time          1308343279.169704 secs.usecs
545 dirty_pages_hits       14819716 samples [regs]
546 dirty_pages_misses     81473472 samples [regs]
547 read_bytes             36502963 samples [bytes] 1 26843582 55488794
548 write_bytes            22985001 samples [bytes] 0 125912 3379002
549 brw_read               2279 samples [pages] 1 1 2270
550 ioctl                  186749 samples [regs]
551 open                   3304805 samples [regs]
552 close                  3331323 samples [regs]
553 seek                   48222475 samples [regs]
554 fsync                  963 samples [regs]
555 truncate               9073 samples [regs]
556 setxattr               19059 samples [regs]
557 getxattr               61169 samples [regs]
558 </screen>
559       <para> The statistics can be cleared by echoing an empty string into the
560           <literal>stats</literal> file or by using the command:
561         <screen>lctl set_param llite.*.stats=0</screen></para>
562       <para>The statistics displayed are described in the table below.</para>
563       <informaltable frame="all">
564         <tgroup cols="2">
565           <colspec colname="c1" colwidth="3*"/>
566           <colspec colname="c2" colwidth="7*"/>
567           <thead>
568             <row>
569               <entry>
570                 <para><emphasis role="bold">Entry</emphasis></para>
571               </entry>
572               <entry>
573                 <para><emphasis role="bold">Description</emphasis></para>
574               </entry>
575             </row>
576           </thead>
577           <tbody>
578             <row>
579               <entry>
580                 <para>
581                   <literal>snapshot_time</literal></para>
582               </entry>
583               <entry>
584                 <para>UNIX epoch instant the stats file was read.</para>
585               </entry>
586             </row>
587             <row>
588               <entry>
589                 <para>
590                   <literal>dirty_page_hits</literal></para>
591               </entry>
592               <entry>
593                 <para>The number of write operations that have been satisfied by the dirty page
594                   cache. See <xref xmlns:xlink="http://www.w3.org/1999/xlink"
595                     linkend="TuningClientIORPCStream"/> for more information about dirty cache
596                   behavior in a Lustre file system.</para>
597               </entry>
598             </row>
599             <row>
600               <entry>
601                 <para>
602                   <literal>dirty_page_misses</literal></para>
603               </entry>
604               <entry>
605                 <para>The number of write operations that were not satisfied by the dirty page
606                   cache.</para>
607               </entry>
608             </row>
609             <row>
610               <entry>
611                 <para>
612                   <literal>read_bytes</literal></para>
613               </entry>
614               <entry>
615                 <para>The number of read operations that have occurred. Three additional parameters
616                   are displayed:</para>
617                 <variablelist>
618                   <varlistentry>
619                     <term>min</term>
620                     <listitem>
621                       <para>The minimum number of bytes read in a single request since the counter
622                         was reset.</para>
623                     </listitem>
624                   </varlistentry>
625                   <varlistentry>
626                     <term>max</term>
627                     <listitem>
628                       <para>The maximum number of bytes read in a single request since the counter
629                         was reset.</para>
630                     </listitem>
631                   </varlistentry>
632                   <varlistentry>
633                     <term>sum</term>
634                     <listitem>
635                       <para>The accumulated sum of bytes of all read requests since the counter was
636                         reset.</para>
637                     </listitem>
638                   </varlistentry>
639                 </variablelist>
640               </entry>
641             </row>
642             <row>
643               <entry>
644                 <para>
645                   <literal>write_bytes</literal></para>
646               </entry>
647               <entry>
648                 <para>The number of write operations that have occurred. Three additional parameters
649                   are displayed:</para>
650                 <variablelist>
651                   <varlistentry>
652                     <term>min</term>
653                     <listitem>
654                       <para>The minimum number of bytes written in a single request since the
655                         counter was reset.</para>
656                     </listitem>
657                   </varlistentry>
658                   <varlistentry>
659                     <term>max</term>
660                     <listitem>
661                       <para>The maximum number of bytes written in a single request since the
662                         counter was reset.</para>
663                     </listitem>
664                   </varlistentry>
665                   <varlistentry>
666                     <term>sum</term>
667                     <listitem>
668                       <para>The accumulated sum of bytes of all write requests since the counter was
669                         reset.</para>
670                     </listitem>
671                   </varlistentry>
672                 </variablelist>
673               </entry>
674             </row>
675             <row>
676               <entry>
677                 <para>
678                   <literal>brw_read</literal></para>
679               </entry>
680               <entry>
681                 <para>The number of pages that have been read. Three additional parameters are
682                   displayed:</para>
683                 <variablelist>
684                   <varlistentry>
685                     <term>min</term>
686                     <listitem>
687                       <para>The minimum number of bytes read in a single block read/write
688                           (<literal>brw</literal>) read request since the counter was reset.</para>
689                     </listitem>
690                   </varlistentry>
691                   <varlistentry>
692                     <term>max</term>
693                     <listitem>
694                       <para>The maximum number of bytes read in a single <literal>brw</literal> read
695                         requests since the counter was reset.</para>
696                     </listitem>
697                   </varlistentry>
698                   <varlistentry>
699                     <term>sum</term>
700                     <listitem>
701                       <para>The accumulated sum of bytes of all <literal>brw</literal> read requests
702                         since the counter was reset.</para>
703                     </listitem>
704                   </varlistentry>
705                 </variablelist>
706               </entry>
707             </row>
708             <row>
709               <entry>
710                 <para>
711                   <literal>ioctl</literal></para>
712               </entry>
713               <entry>
714                 <para>The number of combined file and directory <literal>ioctl</literal>
715                   operations.</para>
716               </entry>
717             </row>
718             <row>
719               <entry>
720                 <para>
721                   <literal>open</literal></para>
722               </entry>
723               <entry>
724                 <para>The number of open operations that have succeeded.</para>
725               </entry>
726             </row>
727             <row>
728               <entry>
729                 <para>
730                   <literal>close</literal></para>
731               </entry>
732               <entry>
733                 <para>The number of close operations that have succeeded.</para>
734               </entry>
735             </row>
736             <row>
737               <entry>
738                 <para>
739                   <literal>seek</literal></para>
740               </entry>
741               <entry>
742                 <para>The number of times <literal>seek</literal> has been called.</para>
743               </entry>
744             </row>
745             <row>
746               <entry>
747                 <para>
748                   <literal>fsync</literal></para>
749               </entry>
750               <entry>
751                 <para>The number of times <literal>fsync</literal> has been called.</para>
752               </entry>
753             </row>
754             <row>
755               <entry>
756                 <para>
757                   <literal>truncate</literal></para>
758               </entry>
759               <entry>
760                 <para>The total number of calls to both locked and lockless
761                     <literal>truncate</literal>.</para>
762               </entry>
763             </row>
764             <row>
765               <entry>
766                 <para>
767                   <literal>setxattr</literal></para>
768               </entry>
769               <entry>
770                 <para>The number of times extended attributes have been set. </para>
771               </entry>
772             </row>
773             <row>
774               <entry>
775                 <para>
776                   <literal>getxattr</literal></para>
777               </entry>
778               <entry>
779                 <para>The number of times value(s) of extended attributes have been fetched.</para>
780               </entry>
781             </row>
782           </tbody>
783         </tgroup>
784       </informaltable>
785       <para><emphasis role="italic"><emphasis role="bold">Analysis:</emphasis></emphasis></para>
786       <para>Information is provided about the amount and type of I/O activity is taking place on the
787         client.</para>
788     </section>
789     <section remap="h3">
790       <title><indexterm>
791           <primary>proc</primary>
792           <secondary>read/write survey</secondary>
793         </indexterm>Monitoring Client Read-Write Offset Statistics</title>
794       <para>When the <literal>offset_stats</literal> parameter is set, statistics are maintained for
795         occurrences of a series of read or write calls from a process that did not access the next
796         sequential location. The <literal>OFFSET</literal> field is reset to 0 (zero) whenever a
797         different file is read or written.</para>
798       <note>
799         <para>By default, statistics are not collected in the <literal>offset_stats</literal>,
800             <literal>extents_stats</literal>, and <literal>extents_stats_per_process</literal> files
801           to reduce monitoring overhead when this information is not needed.  The collection of
802           statistics in all three of these files is activated by writing
803           anything, except for 0 (zero) and "disable", into any one of the
804           files.</para>
805       </note>
806       <para><emphasis role="italic"><emphasis role="bold">Example:</emphasis></emphasis></para>
807       <screen># lctl get_param llite.testfs-f57dee0.offset_stats
808 snapshot_time: 1155748884.591028 (secs.usecs)
809              RANGE   RANGE    SMALLEST   LARGEST
810 R/W   PID    START   END      EXTENT     EXTENT    OFFSET
811 R     8385   0       128      128        128       0
812 R     8385   0       224      224        224       -128
813 W     8385   0       250      50         100       0
814 W     8385   100     1110     10         500       -150
815 W     8384   0       5233     5233       5233      0
816 R     8385   500     600      100        100       -610</screen>
817       <para>In this example, <literal>snapshot_time</literal> is the UNIX epoch instant the file was
818         read. The tabular data is described in the table below.</para>
819       <para>The <literal>offset_stats</literal> file can be cleared by
820         entering:<screen>lctl set_param llite.*.offset_stats=0</screen></para>
821       <informaltable frame="all">
822         <tgroup cols="2">
823           <colspec colname="c1" colwidth="50*"/>
824           <colspec colname="c2" colwidth="50*"/>
825           <thead>
826             <row>
827               <entry>
828                 <para><emphasis role="bold">Field</emphasis></para>
829               </entry>
830               <entry>
831                 <para><emphasis role="bold">Description</emphasis></para>
832               </entry>
833             </row>
834           </thead>
835           <tbody>
836             <row>
837               <entry>
838                 <para>R/W</para>
839               </entry>
840               <entry>
841                 <para>Indicates if the non-sequential call was a read or write</para>
842               </entry>
843             </row>
844             <row>
845               <entry>
846                 <para>PID </para>
847               </entry>
848               <entry>
849                 <para>Process ID of the process that made the read/write call.</para>
850               </entry>
851             </row>
852             <row>
853               <entry>
854                 <para>RANGE START/RANGE END</para>
855               </entry>
856               <entry>
857                 <para>Range in which the read/write calls were sequential.</para>
858               </entry>
859             </row>
860             <row>
861               <entry>
862                 <para>SMALLEST EXTENT </para>
863               </entry>
864               <entry>
865                 <para>Smallest single read/write in the corresponding range (in bytes).</para>
866               </entry>
867             </row>
868             <row>
869               <entry>
870                 <para>LARGEST EXTENT </para>
871               </entry>
872               <entry>
873                 <para>Largest single read/write in the corresponding range (in bytes).</para>
874               </entry>
875             </row>
876             <row>
877               <entry>
878                 <para>OFFSET </para>
879               </entry>
880               <entry>
881                 <para>Difference between the previous range end and the current range start.</para>
882               </entry>
883             </row>
884           </tbody>
885         </tgroup>
886       </informaltable>
887       <para><emphasis role="italic"><emphasis role="bold">Analysis:</emphasis></emphasis></para>
888       <para>This data provides an indication of how contiguous or fragmented the data is. For
889         example, the fourth entry in the example above shows the writes for this RPC were sequential
890         in the range 100 to 1110 with the minimum write 10 bytes and the maximum write 500 bytes.
891         The range started with an offset of -150 from the <literal>RANGE END</literal> of the
892         previous entry in the example.</para>
893     </section>
894     <section remap="h3">
895       <title><indexterm>
896           <primary>proc</primary>
897           <secondary>read/write survey</secondary>
898         </indexterm>Monitoring Client Read-Write Extent Statistics</title>
899       <para>For in-depth troubleshooting, client read-write extent statistics can be accessed to
900         obtain more detail about read/write I/O extents for the file system or for a particular
901         process.</para>
902       <note>
903         <para>By default, statistics are not collected in the <literal>offset_stats</literal>,
904             <literal>extents_stats</literal>, and <literal>extents_stats_per_process</literal> files
905           to reduce monitoring overhead when this information is not needed.  The collection of
906           statistics in all three of these files is activated by writing
907           anything, except for 0 (zero) and "disable", into any one of the
908           files.</para>
909       </note>
910       <section remap="h3">
911         <title>Client-Based I/O Extent Size Survey</title>
912         <para>The <literal>extents_stats</literal> histogram in the
913           <literal>llite</literal> directory shows the statistics for the sizes
914           of the read/write I/O extents. This file does not maintain the per
915           process statistics.</para>
916         <para><emphasis role="italic"><emphasis role="bold">Example:</emphasis></emphasis></para>
917         <screen># lctl get_param llite.testfs-*.extents_stats
918 snapshot_time:                     1213828728.348516 (secs.usecs)
919                        read           |            write
920 extents          calls  %      cum%   |     calls  %     cum%
921
922 0K - 4K :        0      0      0      |     2      2     2
923 4K - 8K :        0      0      0      |     0      0     2
924 8K - 16K :       0      0      0      |     0      0     2
925 16K - 32K :      0      0      0      |     20     23    26
926 32K - 64K :      0      0      0      |     0      0     26
927 64K - 128K :     0      0      0      |     51     60    86
928 128K - 256K :    0      0      0      |     0      0     86
929 256K - 512K :    0      0      0      |     0      0     86
930 512K - 1024K :   0      0      0      |     0      0     86
931 1M - 2M :        0      0      0      |     11     13    100</screen>
932         <para>In this example, <literal>snapshot_time</literal> is the UNIX epoch instant the file
933           was read. The table shows cumulative extents organized according to size with statistics
934           provided separately for reads and writes. Each row in the table shows the number of RPCs
935           for reads and writes respectively (<literal>calls</literal>), the relative percentage of
936           total calls (<literal>%</literal>), and the cumulative percentage to
937           that point in the table of calls (<literal>cum %</literal>). </para>
938         <para> The file can be cleared by issuing the following command:
939         <screen># lctl set_param llite.testfs-*.extents_stats=1</screen></para>
940       </section>
941       <section>
942         <title>Per-Process Client I/O Statistics</title>
943         <para>The <literal>extents_stats_per_process</literal> file maintains the I/O extent size
944           statistics on a per-process basis.</para>
945         <para><emphasis role="italic"><emphasis role="bold">Example:</emphasis></emphasis></para>
946         <screen># lctl get_param llite.testfs-*.extents_stats_per_process
947 snapshot_time:                     1213828762.204440 (secs.usecs)
948                           read            |             write
949 extents            calls   %      cum%    |      calls   %       cum%
950  
951 PID: 11488
952    0K - 4K :       0       0       0      |      0       0       0
953    4K - 8K :       0       0       0      |      0       0       0
954    8K - 16K :      0       0       0      |      0       0       0
955    16K - 32K :     0       0       0      |      0       0       0
956    32K - 64K :     0       0       0      |      0       0       0
957    64K - 128K :    0       0       0      |      0       0       0
958    128K - 256K :   0       0       0      |      0       0       0
959    256K - 512K :   0       0       0      |      0       0       0
960    512K - 1024K :  0       0       0      |      0       0       0
961    1M - 2M :       0       0       0      |      10      100     100
962  
963 PID: 11491
964    0K - 4K :       0       0       0      |      0       0       0
965    4K - 8K :       0       0       0      |      0       0       0
966    8K - 16K :      0       0       0      |      0       0       0
967    16K - 32K :     0       0       0      |      20      100     100
968    
969 PID: 11424
970    0K - 4K :       0       0       0      |      0       0       0
971    4K - 8K :       0       0       0      |      0       0       0
972    8K - 16K :      0       0       0      |      0       0       0
973    16K - 32K :     0       0       0      |      0       0       0
974    32K - 64K :     0       0       0      |      0       0       0
975    64K - 128K :    0       0       0      |      16      100     100
976  
977 PID: 11426
978    0K - 4K :       0       0       0      |      1       100     100
979  
980 PID: 11429
981    0K - 4K :       0       0       0      |      1       100     100
982  
983 </screen>
984         <para>This table shows cumulative extents organized according to size for each process ID
985           (PID) with statistics provided separately for reads and writes. Each row in the table
986           shows the number of RPCs for reads and writes respectively (<literal>calls</literal>), the
987           relative percentage of total calls (<literal>%</literal>), and the cumulative percentage
988           to that point in the table of calls (<literal>cum %</literal>). </para>
989       </section>
990     </section>
991     <section xml:id="dbdoclet.50438271_55057">
992       <title><indexterm>
993           <primary>proc</primary>
994           <secondary>block I/O</secondary>
995         </indexterm>Monitoring the OST Block I/O Stream</title>
996       <para>The <literal>brw_stats</literal> file in the <literal>obdfilter</literal> directory
997         contains histogram data showing statistics for number of I/O requests sent to the disk,
998         their size, and whether they are contiguous on the disk or not.</para>
999       <para><emphasis role="italic"><emphasis role="bold">Example:</emphasis></emphasis></para>
1000       <para>Enter on the OSS:</para>
1001       <screen># lctl get_param obdfilter.testfs-OST0000.brw_stats 
1002 snapshot_time:         1372775039.769045 (secs.usecs)
1003                            read      |      write
1004 pages per bulk r/w     rpcs  % cum % |  rpcs   % cum %
1005 1:                     108 100 100   |    39   0   0
1006 2:                       0   0 100   |     6   0   0
1007 4:                       0   0 100   |     1   0   0
1008 8:                       0   0 100   |     0   0   0
1009 16:                      0   0 100   |     4   0   0
1010 32:                      0   0 100   |    17   0   0
1011 64:                      0   0 100   |    12   0   0
1012 128:                     0   0 100   |    24   0   0
1013 256:                     0   0 100   | 23142  99 100
1014
1015                            read      |      write
1016 discontiguous pages    rpcs  % cum % |  rpcs   % cum %
1017 0:                     108 100 100   | 23245 100 100
1018
1019                            read      |      write
1020 discontiguous blocks   rpcs  % cum % |  rpcs   % cum %
1021 0:                     108 100 100   | 23243  99  99
1022 1:                       0   0 100   |     2   0 100
1023
1024                            read      |      write
1025 disk fragmented I/Os   ios   % cum % |   ios   % cum %
1026 0:                      94  87  87   |     0   0   0
1027 1:                      14  12 100   | 23243  99  99
1028 2:                       0   0 100   |     2   0 100
1029
1030                            read      |      write
1031 disk I/Os in flight    ios   % cum % |   ios   % cum %
1032 1:                      14 100 100   | 20896  89  89
1033 2:                       0   0 100   |  1071   4  94
1034 3:                       0   0 100   |   573   2  96
1035 4:                       0   0 100   |   300   1  98
1036 5:                       0   0 100   |   166   0  98
1037 6:                       0   0 100   |   108   0  99
1038 7:                       0   0 100   |    81   0  99
1039 8:                       0   0 100   |    47   0  99
1040 9:                       0   0 100   |     5   0 100
1041
1042                            read      |      write
1043 I/O time (1/1000s)     ios   % cum % |   ios   % cum %
1044 1:                      94  87  87   |     0   0   0
1045 2:                       0   0  87   |     7   0   0
1046 4:                      14  12 100   |    27   0   0
1047 8:                       0   0 100   |    14   0   0
1048 16:                      0   0 100   |    31   0   0
1049 32:                      0   0 100   |    38   0   0
1050 64:                      0   0 100   | 18979  81  82
1051 128:                     0   0 100   |   943   4  86
1052 256:                     0   0 100   |  1233   5  91
1053 512:                     0   0 100   |  1825   7  99
1054 1K:                      0   0 100   |   99   0  99
1055 2K:                      0   0 100   |     0   0  99
1056 4K:                      0   0 100   |     0   0  99
1057 8K:                      0   0 100   |    49   0 100
1058
1059                            read      |      write
1060 disk I/O size          ios   % cum % |   ios   % cum %
1061 4K:                     14 100 100   |    41   0   0
1062 8K:                      0   0 100   |     6   0   0
1063 16K:                     0   0 100   |     1   0   0
1064 32K:                     0   0 100   |     0   0   0
1065 64K:                     0   0 100   |     4   0   0
1066 128K:                    0   0 100   |    17   0   0
1067 256K:                    0   0 100   |    12   0   0
1068 512K:                    0   0 100   |    24   0   0
1069 1M:                      0   0 100   | 23142  99 100
1070 </screen>
1071       <para>The tabular data is described in the table below. Each row in the table shows the number
1072         of reads and writes occurring for the statistic (<literal>ios</literal>), the relative
1073         percentage of total reads or writes (<literal>%</literal>), and the cumulative percentage to
1074         that point in the table for the statistic (<literal>cum %</literal>). </para>
1075       <informaltable frame="all">
1076         <tgroup cols="2">
1077           <colspec colname="c1" colwidth="40*"/>
1078           <colspec colname="c2" colwidth="60*"/>
1079           <thead>
1080             <row>
1081               <entry>
1082                 <para><emphasis role="bold">Field</emphasis></para>
1083               </entry>
1084               <entry>
1085                 <para><emphasis role="bold">Description</emphasis></para>
1086               </entry>
1087             </row>
1088           </thead>
1089           <tbody>
1090             <row>
1091               <entry>
1092                 <para>
1093                   <literal>pages per bulk r/w</literal></para>
1094               </entry>
1095               <entry>
1096                 <para>Number of pages per RPC request, which should match aggregate client
1097                     <literal>rpc_stats</literal> (see <xref
1098                     xmlns:xlink="http://www.w3.org/1999/xlink" linkend="MonitoringClientRCPStream"
1099                   />).</para>
1100               </entry>
1101             </row>
1102             <row>
1103               <entry>
1104                 <para>
1105                   <literal>discontiguous pages</literal></para>
1106               </entry>
1107               <entry>
1108                 <para>Number of discontinuities in the logical file offset of each page in a single
1109                   RPC.</para>
1110               </entry>
1111             </row>
1112             <row>
1113               <entry>
1114                 <para>
1115                   <literal>discontiguous blocks</literal></para>
1116               </entry>
1117               <entry>
1118                 <para>Number of discontinuities in the physical block allocation in the file system
1119                   for a single RPC.</para>
1120               </entry>
1121             </row>
1122             <row>
1123               <entry>
1124                 <para><literal>disk fragmented I/Os</literal></para>
1125               </entry>
1126               <entry>
1127                 <para>Number of I/Os that were not written entirely sequentially.</para>
1128               </entry>
1129             </row>
1130             <row>
1131               <entry>
1132                 <para><literal>disk I/Os in flight</literal></para>
1133               </entry>
1134               <entry>
1135                 <para>Number of disk I/Os currently pending.</para>
1136               </entry>
1137             </row>
1138             <row>
1139               <entry>
1140                 <para><literal>I/O time (1/1000s)</literal></para>
1141               </entry>
1142               <entry>
1143                 <para>Amount of time for each I/O operation to complete.</para>
1144               </entry>
1145             </row>
1146             <row>
1147               <entry>
1148                 <para><literal>disk I/O size</literal></para>
1149               </entry>
1150               <entry>
1151                 <para>Size of each I/O operation.</para>
1152               </entry>
1153             </row>
1154           </tbody>
1155         </tgroup>
1156       </informaltable>
1157       <para><emphasis role="italic"><emphasis role="bold">Analysis:</emphasis></emphasis></para>
1158       <para>This data provides an indication of extent size and distribution in the file
1159         system.</para>
1160     </section>
1161   </section>
1162   <section>
1163     <title>Tuning Lustre File System I/O</title>
1164     <para>Each OSC has its own tree of tunables. For example:</para>
1165     <screen>$ lctl lctl list_param osc.*.*
1166 osc.myth-OST0000-osc-ffff8804296c2800.active
1167 osc.myth-OST0000-osc-ffff8804296c2800.blocksize
1168 osc.myth-OST0000-osc-ffff8804296c2800.checksum_dump
1169 osc.myth-OST0000-osc-ffff8804296c2800.checksum_type
1170 osc.myth-OST0000-osc-ffff8804296c2800.checksums
1171 osc.myth-OST0000-osc-ffff8804296c2800.connect_flags
1172 :
1173 :
1174 osc.myth-OST0000-osc-ffff8804296c2800.state
1175 osc.myth-OST0000-osc-ffff8804296c2800.stats
1176 osc.myth-OST0000-osc-ffff8804296c2800.timeouts
1177 osc.myth-OST0000-osc-ffff8804296c2800.unstable_stats
1178 osc.myth-OST0000-osc-ffff8804296c2800.uuid
1179 osc.myth-OST0001-osc-ffff8804296c2800.active
1180 osc.myth-OST0001-osc-ffff8804296c2800.blocksize
1181 osc.myth-OST0001-osc-ffff8804296c2800.checksum_dump
1182 osc.myth-OST0001-osc-ffff8804296c2800.checksum_type
1183 :
1184 :
1185 </screen>
1186     <para>The following sections describe some of the parameters that can
1187       be tuned in a Lustre file system.</para>
1188     <section remap="h3" xml:id="TuningClientIORPCStream">
1189       <title><indexterm>
1190           <primary>proc</primary>
1191           <secondary>RPC tunables</secondary>
1192         </indexterm>Tuning the Client I/O RPC Stream</title>
1193       <para>Ideally, an optimal amount of data is packed into each I/O RPC
1194         and a consistent number of issued RPCs are in progress at any time.
1195         To help optimize the client I/O RPC stream, several tuning variables
1196         are provided to adjust behavior according to network conditions and
1197         cluster size. For information about monitoring the client I/O RPC
1198         stream, see <xref
1199           xmlns:xlink="http://www.w3.org/1999/xlink" linkend="MonitoringClientRCPStream"/>.</para>
1200       <para>RPC stream tunables include:</para>
1201       <para>
1202         <itemizedlist>
1203           <listitem>
1204             <para><literal>osc.<replaceable>osc_instance</replaceable>.checksums</literal>
1205               - Controls whether the client will calculate data integrity
1206               checksums for the bulk data transferred to the OST.  Data
1207               integrity checksums are enabled by default.  The algorithm used
1208               can be set using the <literal>checksum_type</literal> parameter.
1209             </para>
1210           </listitem>
1211           <listitem>
1212             <para><literal>osc.<replaceable>osc_instance</replaceable>.checksum_type</literal>
1213               - Controls the data integrity checksum algorithm used by the
1214               client.  The available algorithms are determined by the set of
1215               algorihtms.  The checksum algorithm used by default is determined
1216               by first selecting the fastest algorithms available on the OST,
1217               and then selecting the fastest of those algorithms on the client,
1218               which depends on available optimizations in the CPU hardware and
1219               kernel.  The default algorithm can be overridden by writing the
1220               algorithm name into the <literal>checksum_type</literal>
1221               parameter.  Available checksum types can be seen on the client by
1222               reading the <literal>checksum_type</literal> parameter. Currently
1223               supported checksum types are:
1224               <literal>adler</literal>,
1225               <literal>crc32</literal>,
1226               <literal>crc32c</literal>
1227             </para>
1228           </listitem>
1229           <listitem>
1230             <para><literal>osc.<replaceable>osc_instance</replaceable>.max_dirty_mb</literal>
1231               - Controls how many MiB of dirty data can be written into the
1232               client pagecache for writes by <emphasis>each</emphasis> OSC.
1233               When this limit is reached, additional writes block until
1234               previously-cached data is written to the server. This may be
1235               changed by the <literal>lctl set_param</literal> command. Only
1236               values larger than 0 and smaller than the lesser of 2048 MiB or
1237               1/4 of client RAM are valid. Performance can suffers if the
1238               client cannot aggregate enough data per OSC to form a full RPC
1239               (as set by the <literal>max_pages_per_rpc</literal>) parameter,
1240               unless the application is doing very large writes itself.
1241             </para>
1242             <para>To maximize performance, the value for
1243               <literal>max_dirty_mb</literal> is recommended to be at least
1244               4 * <literal>max_pages_per_rpc</literal> *
1245               <literal>max_rpcs_in_flight</literal>.
1246             </para>
1247           </listitem>
1248           <listitem>
1249             <para><literal>osc.<replaceable>osc_instance</replaceable>.cur_dirty_bytes</literal>
1250               - A read-only value that returns the current number of bytes
1251               written and cached by this OSC.
1252             </para>
1253           </listitem>
1254           <listitem>
1255             <para><literal>osc.<replaceable>osc_instance</replaceable>.max_pages_per_rpc</literal>
1256               - The maximum number of pages that will be sent in a single RPC
1257               request to the OST. The minimum value is one page and the maximum
1258               value is 16 MiB (4096 on systems with <literal>PAGE_SIZE</literal>
1259               of 4 KiB), with the default value of 4 MiB in one RPC.  The upper
1260               limit may also be constrained by <literal>ofd.*.brw_size</literal>
1261               setting on the OSS, and applies to all clients connected to that
1262               OST.  It is also possible to specify a units suffix (e.g.
1263               <literal>max_pages_per_rpc=4M</literal>), so the RPC size can be
1264               set independently of the client <literal>PAGE_SIZE</literal>.
1265             </para>
1266           </listitem>
1267           <listitem>
1268             <para><literal>osc.<replaceable>osc_instance</replaceable>.max_rpcs_in_flight</literal>
1269               - The maximum number of concurrent RPCs in flight from an OSC to
1270               its OST. If the OSC tries to initiate an RPC but finds that it
1271               already has the same number of RPCs outstanding, it will wait to
1272               issue further RPCs until some complete. The minimum setting is 1
1273               and maximum setting is 256. The default value is 8 RPCs.
1274             </para>
1275             <para>To improve small file I/O performance, increase the
1276               <literal>max_rpcs_in_flight</literal> value.
1277             </para>
1278           </listitem>
1279           <listitem>
1280             <para><literal>llite.<replaceable>fsname_instance</replaceable>.max_cache_mb</literal>
1281               - Maximum amount of inactive data cached by the client.  The
1282               default value is 3/4 of the client RAM.
1283             </para>
1284           </listitem>
1285         </itemizedlist>
1286       </para>
1287       <note>
1288         <para>The value for <literal><replaceable>osc_instance</replaceable></literal>
1289           and <literal><replaceable>fsname_instance</replaceable></literal>
1290           are unique to each mount point to allow associating osc, mdc, lov,
1291           lmv, and llite parameters with the same mount point.  However, it is
1292           common for scripts to use a wildcard <literal>*</literal> or a
1293           filesystem-specific wildcard
1294           <literal><replaceable>fsname-*</replaceable></literal> to specify
1295           the parameter settings uniformly on all clients. For example:
1296 <screen>
1297 client$ lctl get_param osc.testfs-OST0000*.rpc_stats
1298 osc.testfs-OST0000-osc-ffff88107412f400.rpc_stats=
1299 snapshot_time:         1375743284.337839 (secs.usecs)
1300 read RPCs in flight:  0
1301 write RPCs in flight: 0
1302 </screen></para>
1303       </note>
1304     </section>
1305     <section remap="h3" xml:id="TuningClientReadahead">
1306       <title><indexterm>
1307           <primary>proc</primary>
1308           <secondary>readahead</secondary>
1309         </indexterm>Tuning File Readahead and Directory Statahead</title>
1310       <para>File readahead and directory statahead enable reading of data
1311       into memory before a process requests the data. File readahead prefetches
1312       file content data into memory for <literal>read()</literal> related
1313       calls, while directory statahead fetches file metadata into memory for
1314       <literal>readdir()</literal> and <literal>stat()</literal> related
1315       calls.  When readahead and statahead work well, a process that accesses
1316       data finds that the information it needs is available immediately in
1317       memory on the client when requested without the delay of network I/O.
1318       </para>
1319       <section remap="h4">
1320         <title>Tuning File Readahead</title>
1321         <para>File readahead is triggered when two or more sequential reads
1322         by an application fail to be satisfied by data in the Linux buffer
1323         cache. The size of the initial readahead is 1 MB. Additional
1324         readaheads grow linearly and increment until the readahead cache on
1325         the client is full at 40 MB.</para>
1326         <para>Readahead tunables include:</para>
1327         <itemizedlist>
1328           <listitem>
1329             <para><literal>llite.<replaceable>fsname_instance</replaceable>.max_read_ahead_mb</literal>
1330               - Controls the maximum amount of data readahead on a file.
1331               Files are read ahead in RPC-sized chunks (4 MiB, or the size of
1332               the <literal>read()</literal> call, if larger) after the second
1333               sequential read on a file descriptor. Random reads are done at
1334               the size of the <literal>read()</literal> call only (no
1335               readahead). Reads to non-contiguous regions of the file reset
1336               the readahead algorithm, and readahead is not triggered until
1337               sequential reads take place again.
1338             </para>
1339             <para>
1340               This is the global limit for all files and cannot be larger than
1341               1/2 of the client RAM.  To disable readahead, set
1342               <literal>max_read_ahead_mb=0</literal>.
1343             </para>
1344           </listitem>
1345           <listitem>
1346             <para><literal>llite.<replaceable>fsname_instance</replaceable>.max_read_ahead_per_file_mb</literal>
1347               - Controls the maximum number of megabytes (MiB) of data that
1348               should be prefetched by the client when sequential reads are
1349               detected on a file.  This is the per-file readahead limit and
1350               cannot be larger than <literal>max_read_ahead_mb</literal>.
1351             </para>
1352           </listitem>
1353           <listitem>
1354             <para><literal>llite.<replaceable>fsname_instance</replaceable>.max_read_ahead_whole_mb</literal>
1355               - Controls the maximum size of a file in MiB that is read in its
1356               entirety upon access, regardless of the size of the
1357               <literal>read()</literal> call.  This avoids multiple small read
1358               RPCs on relatively small files, when it is not possible to
1359               efficiently detect a sequential read pattern before the whole
1360               file has been read.
1361             </para>
1362             <para>The default value is the greater of 2 MiB or the size of one
1363               RPC, as given by <literal>max_pages_per_rpc</literal>.
1364             </para>
1365           </listitem>
1366         </itemizedlist>
1367       </section>
1368       <section>
1369         <title>Tuning Directory Statahead and AGL</title>
1370         <para>Many system commands, such as <literal>ls â€“l</literal>,
1371         <literal>du</literal>, and <literal>find</literal>, traverse a
1372         directory sequentially. To make these commands run efficiently, the
1373         directory statahead can be enabled to improve the performance of
1374         directory traversal.</para>
1375         <para>The statahead tunables are:</para>
1376         <itemizedlist>
1377           <listitem>
1378             <para><literal>statahead_max</literal> -
1379             Controls the maximum number of file attributes that will be
1380             prefetched by the statahead thread. By default, statahead is
1381             enabled and <literal>statahead_max</literal> is 32 files.</para>
1382             <para>To disable statahead, set <literal>statahead_max</literal>
1383             to zero via the following command on the client:</para>
1384             <screen>lctl set_param llite.*.statahead_max=0</screen>
1385             <para>To change the maximum statahead window size on a client:</para>
1386             <screen>lctl set_param llite.*.statahead_max=<replaceable>n</replaceable></screen>
1387             <para>The maximum <literal>statahead_max</literal> is 8192 files.
1388             </para>
1389             <para>The directory statahead thread will also prefetch the file
1390             size/block attributes from the OSTs, so that all file attributes
1391             are available on the client when requested by an application.
1392             This is controlled by the asynchronous glimpse lock (AGL) setting.
1393             The AGL behaviour can be disabled by setting:</para>
1394             <screen>lctl set_param llite.*.statahead_agl=0</screen>
1395           </listitem>
1396           <listitem>
1397             <para><literal>statahead_stats</literal> -
1398             A read-only interface that provides current statahead and AGL
1399             statistics, such as how many times statahead/AGL has been triggered
1400             since the last mount, how many statahead/AGL failures have occurred
1401             due to an incorrect prediction or other causes.</para>
1402             <note>
1403               <para>AGL behaviour is affected by statahead since the inodes
1404               processed by AGL are built by the statahead thread.  If
1405               statahead is disabled, then AGL is also disabled.</para>
1406             </note>
1407           </listitem>
1408         </itemizedlist>
1409       </section>
1410     </section>
1411     <section remap="h3">
1412       <title><indexterm>
1413           <primary>proc</primary>
1414           <secondary>read cache</secondary>
1415         </indexterm>Tuning OSS Read Cache</title>
1416       <para>The OSS read cache feature provides read-only caching of data on an OSS. This
1417         functionality uses the Linux page cache to store the data and uses as much physical memory
1418         as is allocated.</para>
1419       <para>OSS read cache improves Lustre file system performance in these situations:</para>
1420       <itemizedlist>
1421         <listitem>
1422           <para>Many clients are accessing the same data set (as in HPC applications or when
1423             diskless clients boot from the Lustre file system).</para>
1424         </listitem>
1425         <listitem>
1426           <para>One client is storing data while another client is reading it (i.e., clients are
1427             exchanging data via the OST).</para>
1428         </listitem>
1429         <listitem>
1430           <para>A client has very limited caching of its own.</para>
1431         </listitem>
1432       </itemizedlist>
1433       <para>OSS read cache offers these benefits:</para>
1434       <itemizedlist>
1435         <listitem>
1436           <para>Allows OSTs to cache read data more frequently.</para>
1437         </listitem>
1438         <listitem>
1439           <para>Improves repeated reads to match network speeds instead of disk speeds.</para>
1440         </listitem>
1441         <listitem>
1442           <para>Provides the building blocks for OST write cache (small-write aggregation).</para>
1443         </listitem>
1444       </itemizedlist>
1445       <section remap="h4">
1446         <title>Using OSS Read Cache</title>
1447         <para>OSS read cache is implemented on the OSS, and does not require any special support on
1448           the client side. Since OSS read cache uses the memory available in the Linux page cache,
1449           the appropriate amount of memory for the cache should be determined based on I/O patterns;
1450           if the data is mostly reads, then more cache is required than would be needed for mostly
1451           writes.</para>
1452         <para>OSS read cache is managed using the following tunables:</para>
1453         <itemizedlist>
1454           <listitem>
1455             <para><literal>read_cache_enable</literal> - Controls whether data read from disk during
1456               a read request is kept in memory and available for later read requests for the same
1457               data, without having to re-read it from disk. By default, read cache is enabled
1458                 (<literal>read_cache_enable=1</literal>).</para>
1459             <para>When the OSS receives a read request from a client, it reads data from disk into
1460               its memory and sends the data as a reply to the request. If read cache is enabled,
1461               this data stays in memory after the request from the client has been fulfilled. When
1462               subsequent read requests for the same data are received, the OSS skips reading data
1463               from disk and the request is fulfilled from the cached data. The read cache is managed
1464               by the Linux kernel globally across all OSTs on that OSS so that the least recently
1465               used cache pages are dropped from memory when the amount of free memory is running
1466               low.</para>
1467             <para>If read cache is disabled (<literal>read_cache_enable=0</literal>), the OSS
1468               discards the data after a read request from the client is serviced and, for subsequent
1469               read requests, the OSS again reads the data from disk.</para>
1470             <para>To disable read cache on all the OSTs of an OSS, run:</para>
1471             <screen>root@oss1# lctl set_param obdfilter.*.read_cache_enable=0</screen>
1472             <para>To re-enable read cache on one OST, run:</para>
1473             <screen>root@oss1# lctl set_param obdfilter.{OST_name}.read_cache_enable=1</screen>
1474             <para>To check if read cache is enabled on all OSTs on an OSS, run:</para>
1475             <screen>root@oss1# lctl get_param obdfilter.*.read_cache_enable</screen>
1476           </listitem>
1477           <listitem>
1478             <para><literal>writethrough_cache_enable</literal> - Controls whether data sent to the
1479               OSS as a write request is kept in the read cache and available for later reads, or if
1480               it is discarded from cache when the write is completed. By default, the writethrough
1481               cache is enabled (<literal>writethrough_cache_enable=1</literal>).</para>
1482             <para>When the OSS receives write requests from a client, it receives data from the
1483               client into its memory and writes the data to disk. If the writethrough cache is
1484               enabled, this data stays in memory after the write request is completed, allowing the
1485               OSS to skip reading this data from disk if a later read request, or partial-page write
1486               request, for the same data is received.</para>
1487             <para>If the writethrough cache is disabled
1488                 (<literal>writethrough_cache_enabled=0</literal>), the OSS discards the data after
1489               the write request from the client is completed. For subsequent read requests, or
1490               partial-page write requests, the OSS must re-read the data from disk.</para>
1491             <para>Enabling writethrough cache is advisable if clients are doing small or unaligned
1492               writes that would cause partial-page updates, or if the files written by one node are
1493               immediately being accessed by other nodes. Some examples where enabling writethrough
1494               cache might be useful include producer-consumer I/O models or shared-file writes with
1495               a different node doing I/O not aligned on 4096-byte boundaries. </para>
1496             <para>Disabling the writethrough cache is advisable when files are mostly written to the
1497               file system but are not re-read within a short time period, or files are only written
1498               and re-read by the same node, regardless of whether the I/O is aligned or not.</para>
1499             <para>To disable the writethrough cache on all OSTs of an OSS, run:</para>
1500             <screen>root@oss1# lctl set_param obdfilter.*.writethrough_cache_enable=0</screen>
1501             <para>To re-enable the writethrough cache on one OST, run:</para>
1502             <screen>root@oss1# lctl set_param obdfilter.{OST_name}.writethrough_cache_enable=1</screen>
1503             <para>To check if the writethrough cache is enabled, run:</para>
1504             <screen>root@oss1# lctl get_param obdfilter.*.writethrough_cache_enable</screen>
1505           </listitem>
1506           <listitem>
1507             <para><literal>readcache_max_filesize</literal> - Controls the maximum size of a file
1508               that both the read cache and writethrough cache will try to keep in memory. Files
1509               larger than <literal>readcache_max_filesize</literal> will not be kept in cache for
1510               either reads or writes.</para>
1511             <para>Setting this tunable can be useful for workloads where relatively small files are
1512               repeatedly accessed by many clients, such as job startup files, executables, log
1513               files, etc., but large files are read or written only once. By not putting the larger
1514               files into the cache, it is much more likely that more of the smaller files will
1515               remain in cache for a longer time.</para>
1516             <para>When setting <literal>readcache_max_filesize</literal>, the input value can be
1517               specified in bytes, or can have a suffix to indicate other binary units such as
1518                 <literal>K</literal> (kilobytes), <literal>M</literal> (megabytes),
1519                 <literal>G</literal> (gigabytes), <literal>T</literal> (terabytes), or
1520                 <literal>P</literal> (petabytes).</para>
1521             <para>To limit the maximum cached file size to 32 MB on all OSTs of an OSS, run:</para>
1522             <screen>root@oss1# lctl set_param obdfilter.*.readcache_max_filesize=32M</screen>
1523             <para>To disable the maximum cached file size on an OST, run:</para>
1524             <screen>root@oss1# lctl set_param obdfilter.{OST_name}.readcache_max_filesize=-1</screen>
1525             <para>To check the current maximum cached file size on all OSTs of an OSS, run:</para>
1526             <screen>root@oss1# lctl get_param obdfilter.*.readcache_max_filesize</screen>
1527           </listitem>
1528         </itemizedlist>
1529       </section>
1530     </section>
1531     <section>
1532       <title><indexterm>
1533           <primary>proc</primary>
1534           <secondary>OSS journal</secondary>
1535         </indexterm>Enabling OSS Asynchronous Journal Commit</title>
1536       <para>The OSS asynchronous journal commit feature asynchronously writes data to disk without
1537         forcing a journal flush. This reduces the number of seeks and significantly improves
1538         performance on some hardware.</para>
1539       <note>
1540         <para>Asynchronous journal commit cannot work with direct I/O-originated writes
1541             (<literal>O_DIRECT</literal> flag set). In this case, a journal flush is forced. </para>
1542       </note>
1543       <para>When the asynchronous journal commit feature is enabled, client nodes keep data in the
1544         page cache (a page reference). Lustre clients monitor the last committed transaction number
1545           (<literal>transno</literal>) in messages sent from the OSS to the clients. When a client
1546         sees that the last committed <literal>transno</literal> reported by the OSS is at least
1547         equal to the bulk write <literal>transno</literal>, it releases the reference on the
1548         corresponding pages. To avoid page references being held for too long on clients after a
1549         bulk write, a 7 second ping request is scheduled (the default OSS file system commit time
1550         interval is 5 seconds) after the bulk write reply is received, so the OSS has an opportunity
1551         to report the last committed <literal>transno</literal>.</para>
1552       <para>If the OSS crashes before the journal commit occurs, then intermediate data is lost.
1553         However, OSS recovery functionality incorporated into the asynchronous journal commit
1554         feature causes clients to replay their write requests and compensate for the missing disk
1555         updates by restoring the state of the file system.</para>
1556       <para>By default, <literal>sync_journal</literal> is enabled
1557           (<literal>sync_journal=1</literal>), so that journal entries are committed synchronously.
1558         To enable asynchronous journal commit, set the <literal>sync_journal</literal> parameter to
1559           <literal>0</literal> by entering: </para>
1560       <screen>$ lctl set_param obdfilter.*.sync_journal=0 
1561 obdfilter.lol-OST0001.sync_journal=0</screen>
1562       <para>An associated <literal>sync-on-lock-cancel</literal> feature (enabled by default)
1563         addresses a data consistency issue that can result if an OSS crashes after multiple clients
1564         have written data into intersecting regions of an object, and then one of the clients also
1565         crashes. A condition is created in which the POSIX requirement for continuous writes is
1566         violated along with a potential for corrupted data. With
1567           <literal>sync-on-lock-cancel</literal> enabled, if a cancelled lock has any volatile
1568         writes attached to it, the OSS synchronously writes the journal to disk on lock
1569         cancellation. Disabling the <literal>sync-on-lock-cancel</literal> feature may enhance
1570         performance for concurrent write workloads, but it is recommended that you not disable this
1571         feature.</para>
1572       <para> The <literal>sync_on_lock_cancel</literal> parameter can be set to the following
1573         values:</para>
1574       <itemizedlist>
1575         <listitem>
1576           <para><literal>always</literal> - Always force a journal flush on lock cancellation
1577             (default when <literal>async_journal</literal> is enabled).</para>
1578         </listitem>
1579         <listitem>
1580           <para><literal>blocking</literal> - Force a journal flush only when the local cancellation
1581             is due to a blocking callback.</para>
1582         </listitem>
1583         <listitem>
1584           <para><literal>never</literal> - Do not force any journal flush (default when
1585               <literal>async_journal</literal> is disabled).</para>
1586         </listitem>
1587       </itemizedlist>
1588       <para>For example, to set <literal>sync_on_lock_cancel</literal> to not to force a journal
1589         flush, use a command similar to:</para>
1590       <screen>$ lctl get_param obdfilter.*.sync_on_lock_cancel
1591 obdfilter.lol-OST0001.sync_on_lock_cancel=never</screen>
1592     </section>
1593     <section xml:id="dbdoclet.TuningModRPCs" condition='l28'>
1594       <title>
1595         <indexterm>
1596           <primary>proc</primary>
1597           <secondary>client metadata performance</secondary>
1598         </indexterm>
1599         Tuning the Client Metadata RPC Stream
1600       </title>
1601       <para>The client metadata RPC stream represents the metadata RPCs issued
1602         in parallel by a client to a MDT target. The metadata RPCs can be split
1603         in two categories: the requests that do not modify the file system
1604         (like getattr operation), and the requests that do modify the file system
1605         (like create, unlink, setattr operations). To help optimize the client
1606         metadata RPC stream, several tuning variables are provided to adjust
1607         behavior according to network conditions and cluster size.</para>
1608       <para>Note that increasing the number of metadata RPCs issued in parallel
1609         might improve the performance metadata intensive parallel applications,
1610         but as a consequence it will consume more memory on the client and on
1611         the MDS.</para>
1612       <section>
1613         <title>Configuring the Client Metadata RPC Stream</title>
1614         <para>The MDC <literal>max_rpcs_in_flight</literal> parameter defines
1615           the maximum number of metadata RPCs, both modifying and
1616           non-modifying RPCs, that can be sent in parallel by a client to a MDT
1617           target. This includes every file system metadata operations, such as
1618           file or directory stat, creation, unlink. The default setting is 8,
1619           minimum setting is 1 and maximum setting is 256.</para>
1620         <para>To set the <literal>max_rpcs_in_flight</literal> parameter, run
1621           the following command on the Lustre client:</para>
1622         <screen>client$ lctl set_param mdc.*.max_rpcs_in_flight=16</screen>
1623         <para>The MDC <literal>max_mod_rpcs_in_flight</literal> parameter
1624           defines the maximum number of file system modifying RPCs that can be
1625           sent in parallel by a client to a MDT target. For example, the Lustre
1626           client sends modify RPCs when it performs file or directory creation,
1627           unlink, access permission modification or ownership modification. The
1628           default setting is 7, minimum setting is 1 and maximum setting is
1629           256.</para>
1630         <para>To set the <literal>max_mod_rpcs_in_flight</literal> parameter,
1631           run the following command on the Lustre client:</para>
1632         <screen>client$ lctl set_param mdc.*.max_mod_rpcs_in_flight=12</screen>
1633         <para>The <literal>max_mod_rpcs_in_flight</literal> value must be
1634           strictly less than the <literal>max_rpcs_in_flight</literal> value.
1635           It must also be less or equal to the MDT
1636           <literal>max_mod_rpcs_per_client</literal> value. If one of theses
1637           conditions is not enforced, the setting fails and an explicit message
1638           is written in the Lustre log.</para>
1639         <para>The MDT <literal>max_mod_rpcs_per_client</literal> parameter is a
1640           tunable of the kernel module <literal>mdt</literal> that defines the
1641           maximum number of file system modifying RPCs in flight allowed per
1642           client. The parameter can be updated at runtime, but the change is
1643           effective to new client connections only. The default setting is 8.
1644         </para>
1645         <para>To set the <literal>max_mod_rpcs_per_client</literal> parameter,
1646           run the following command on the MDS:</para>
1647         <screen>mds$ echo 12 > /sys/module/mdt/parameters/max_mod_rpcs_per_client</screen>
1648       </section>
1649       <section>
1650         <title>Monitoring the Client Metadata RPC Stream</title>
1651         <para>The <literal>rpc_stats</literal> file contains histogram data
1652           showing information about modify metadata RPCs. It can be helpful to
1653           identify the level of parallelism achieved by an application doing
1654           modify metadata operations.</para>
1655         <para><emphasis role="bold">Example:</emphasis></para>
1656         <screen>client$ lctl get_param mdc.*.rpc_stats
1657 snapshot_time:         1441876896.567070 (secs.usecs)
1658 modify_RPCs_in_flight:  0
1659
1660                         modify
1661 rpcs in flight        rpcs   % cum %
1662 0:                       0   0   0
1663 1:                      56   0   0
1664 2:                      40   0   0
1665 3:                      70   0   0
1666 4                       41   0   0
1667 5:                      51   0   1
1668 6:                      88   0   1
1669 7:                     366   1   2
1670 8:                    1321   5   8
1671 9:                    3624  15  23
1672 10:                   6482  27  50
1673 11:                   7321  30  81
1674 12:                   4540  18 100</screen>
1675         <para>The file information includes:</para>
1676         <itemizedlist>
1677           <listitem>
1678             <para><literal>snapshot_time</literal> - UNIX epoch instant the
1679               file was read.</para>
1680           </listitem>
1681           <listitem>
1682             <para><literal>modify_RPCs_in_flight</literal> - Number of modify
1683               RPCs issued by the MDC, but not completed at the time of the
1684               snapshot. This value should always be less than or equal to
1685               <literal>max_mod_rpcs_in_flight</literal>.</para>
1686           </listitem>
1687           <listitem>
1688             <para><literal>rpcs in flight</literal> - Number of modify RPCs
1689               that are pending when a RPC is sent, the relative percentage
1690               (<literal>%</literal>) of total modify RPCs, and the cumulative
1691               percentage (<literal>cum %</literal>) to that point.</para>
1692           </listitem>
1693         </itemizedlist>
1694         <para>If a large proportion of modify metadata RPCs are issued with a
1695           number of pending metadata RPCs close to the
1696           <literal>max_mod_rpcs_in_flight</literal> value, it means the
1697           <literal>max_mod_rpcs_in_flight</literal> value could be increased to
1698           improve the modify metadata performance.</para>
1699       </section>
1700     </section>
1701   </section>
1702   <section>
1703     <title>Configuring Timeouts in a Lustre File System</title>
1704     <para>In a Lustre file system, RPC timeouts are set using an adaptive timeouts mechanism, which
1705       is enabled by default. Servers track RPC completion times and then report back to clients
1706       estimates for completion times for future RPCs. Clients  use these estimates to set RPC
1707       timeout values. If the processing of server requests slows down for any reason, the server
1708       estimates for RPC completion increase, and clients then revise RPC timeout values to allow
1709       more time for RPC completion.</para>
1710     <para>If the RPCs queued on the server approach the RPC timeout specified by the client, to
1711       avoid RPC timeouts and disconnect/reconnect cycles, the server sends an "early reply" to the
1712       client, telling the client to allow more time. Conversely, as server processing speeds up, RPC
1713       timeout values decrease, resulting in faster detection if the server becomes non-responsive
1714       and quicker connection to the failover partner of the server.</para>
1715     <section>
1716       <title><indexterm>
1717           <primary>proc</primary>
1718           <secondary>configuring adaptive timeouts</secondary>
1719         </indexterm><indexterm>
1720           <primary>configuring</primary>
1721           <secondary>adaptive timeouts</secondary>
1722         </indexterm><indexterm>
1723           <primary>proc</primary>
1724           <secondary>adaptive timeouts</secondary>
1725         </indexterm>Configuring Adaptive Timeouts</title>
1726       <para>The adaptive timeout parameters in the table below can be set persistently system-wide
1727         using <literal>lctl conf_param</literal> on the MGS. For example, the following command sets
1728         the <literal>at_max</literal> value  for all servers and clients associated with the file
1729         system
1730         <literal>testfs</literal>:<screen>lctl conf_param testfs.sys.at_max=1500</screen></para>
1731       <note>
1732         <para>Clients that access multiple Lustre file systems must use the same parameter values
1733           for all file systems.</para>
1734       </note>
1735       <informaltable frame="all">
1736         <tgroup cols="2">
1737           <colspec colname="c1" colwidth="30*"/>
1738           <colspec colname="c2" colwidth="80*"/>
1739           <thead>
1740             <row>
1741               <entry>
1742                 <para><emphasis role="bold">Parameter</emphasis></para>
1743               </entry>
1744               <entry>
1745                 <para><emphasis role="bold">Description</emphasis></para>
1746               </entry>
1747             </row>
1748           </thead>
1749           <tbody>
1750             <row>
1751               <entry>
1752                 <para>
1753                   <literal> at_min </literal></para>
1754               </entry>
1755               <entry>
1756                 <para>Minimum adaptive timeout (in seconds). The default value is 0. The
1757                     <literal>at_min</literal> parameter is the minimum processing time that a server
1758                   will report. Ideally, <literal>at_min</literal> should be set to its default
1759                   value. Clients base their timeouts on this value, but they do not use this value
1760                   directly. </para>
1761                 <para>If, for unknown reasons (usually due to temporary network outages), the
1762                   adaptive timeout value is too short and clients time out their RPCs, you can
1763                   increase the <literal>at_min</literal> value to compensate for this.</para>
1764               </entry>
1765             </row>
1766             <row>
1767               <entry>
1768                 <para>
1769                   <literal> at_max </literal></para>
1770               </entry>
1771               <entry>
1772                 <para>Maximum adaptive timeout (in seconds). The <literal>at_max</literal> parameter
1773                   is an upper-limit on the service time estimate. If <literal>at_max</literal> is
1774                   reached, an RPC request times out.</para>
1775                 <para>Setting <literal>at_max</literal> to 0 causes adaptive timeouts to be disabled
1776                   and a fixed timeout method to be used instead (see <xref
1777                     xmlns:xlink="http://www.w3.org/1999/xlink" linkend="section_c24_nt5_dl"/></para>
1778                 <note>
1779                   <para>If slow hardware causes the service estimate to increase beyond the default
1780                     value of <literal>at_max</literal>, increase <literal>at_max</literal> to the
1781                     maximum time you are willing to wait for an RPC completion.</para>
1782                 </note>
1783               </entry>
1784             </row>
1785             <row>
1786               <entry>
1787                 <para>
1788                   <literal> at_history </literal></para>
1789               </entry>
1790               <entry>
1791                 <para>Time period (in seconds) within which adaptive timeouts remember the slowest
1792                   event that occurred. The default is 600.</para>
1793               </entry>
1794             </row>
1795             <row>
1796               <entry>
1797                 <para>
1798                   <literal> at_early_margin </literal></para>
1799               </entry>
1800               <entry>
1801                 <para>Amount of time before the Lustre server sends an early reply (in seconds).
1802                   Default is 5.</para>
1803               </entry>
1804             </row>
1805             <row>
1806               <entry>
1807                 <para>
1808                   <literal> at_extra </literal></para>
1809               </entry>
1810               <entry>
1811                 <para>Incremental amount of time that a server requests with each early reply (in
1812                   seconds). The server does not know how much time the RPC will take, so it asks for
1813                   a fixed value. The default is 30, which provides a balance between sending too
1814                   many early replies for the same RPC and overestimating the actual completion
1815                   time.</para>
1816                 <para>When a server finds a queued request about to time out and needs to send an
1817                   early reply out, the server adds the <literal>at_extra</literal> value. If the
1818                   time expires, the Lustre server drops the request, and the client enters recovery
1819                   status and reconnects to restore the connection to normal status.</para>
1820                 <para>If you see multiple early replies for the same RPC asking for 30-second
1821                   increases, change the <literal>at_extra</literal> value to a larger number to cut
1822                   down on early replies sent and, therefore, network load.</para>
1823               </entry>
1824             </row>
1825             <row>
1826               <entry>
1827                 <para>
1828                   <literal> ldlm_enqueue_min </literal></para>
1829               </entry>
1830               <entry>
1831                 <para>Minimum lock enqueue time (in seconds). The default is 100. The time it takes
1832                   to enqueue a lock, <literal>ldlm_enqueue</literal>, is the maximum of the measured
1833                   enqueue estimate (influenced by <literal>at_min</literal> and
1834                     <literal>at_max</literal> parameters), multiplied by a weighting factor and the
1835                   value of <literal>ldlm_enqueue_min</literal>. </para>
1836                 <para>Lustre Distributed Lock Manager (LDLM) lock enqueues have a dedicated minimum
1837                   value for <literal>ldlm_enqueue_min</literal>. Lock enqueue timeouts increase as
1838                   the measured enqueue times increase (similar to adaptive timeouts).</para>
1839               </entry>
1840             </row>
1841           </tbody>
1842         </tgroup>
1843       </informaltable>
1844       <section>
1845         <title>Interpreting Adaptive Timeout Information</title>
1846         <para>Adaptive timeout information can be obtained from the <literal>timeouts</literal>
1847           files in <literal>/proc/fs/lustre/*/</literal> on each server and client using the
1848             <literal>lctl</literal> command. To read information from a <literal>timeouts</literal>
1849           file, enter a command similar to:</para>
1850         <screen># lctl get_param -n ost.*.ost_io.timeouts
1851 service : cur 33  worst 34 (at 1193427052, 0d0h26m40s ago) 1 1 33 2</screen>
1852         <para>In this example, the <literal>ost_io</literal> service on this node is currently
1853           reporting an estimated RPC service time of 33 seconds. The worst RPC service time was 34
1854           seconds, which occurred 26 minutes ago.</para>
1855         <para>The output also provides a history of service times. Four &quot;bins&quot; of adaptive
1856           timeout history are shown, with the maximum RPC time in each bin reported. In both the
1857           0-150s bin and the 150-300s bin, the maximum RPC time was 1. The 300-450s bin shows the
1858           worst (maximum) RPC time at 33 seconds, and the 450-600s bin shows a maximum of RPC time
1859           of 2 seconds. The estimated service time is the maximum value across the four bins (33
1860           seconds in this example).</para>
1861         <para>Service times (as reported by the servers) are also tracked in the client OBDs, as
1862           shown in this example:</para>
1863         <screen># lctl get_param osc.*.timeouts
1864 last reply : 1193428639, 0d0h00m00s ago
1865 network    : cur  1 worst  2 (at 1193427053, 0d0h26m26s ago)  1  1  1  1
1866 portal 6   : cur 33 worst 34 (at 1193427052, 0d0h26m27s ago) 33 33 33  2
1867 portal 28  : cur  1 worst  1 (at 1193426141, 0d0h41m38s ago)  1  1  1  1
1868 portal 7   : cur  1 worst  1 (at 1193426141, 0d0h41m38s ago)  1  0  1  1
1869 portal 17  : cur  1 worst  1 (at 1193426177, 0d0h41m02s ago)  1  0  0  1
1870 </screen>
1871         <para>In this example, portal 6, the <literal>ost_io</literal> service portal, shows the
1872           history of service estimates reported by the portal.</para>
1873         <para>Server statistic files also show the range of estimates including min, max, sum, and
1874           sumsq. For example:</para>
1875         <screen># lctl get_param mdt.*.mdt.stats
1876 ...
1877 req_timeout               6 samples [sec] 1 10 15 105
1878 ...
1879 </screen>
1880       </section>
1881     </section>
1882     <section xml:id="section_c24_nt5_dl">
1883       <title>Setting Static Timeouts<indexterm>
1884           <primary>proc</primary>
1885           <secondary>static timeouts</secondary>
1886         </indexterm></title>
1887       <para>The Lustre software provides two sets of static (fixed) timeouts, LND timeouts and
1888         Lustre timeouts, which are used when adaptive timeouts are not enabled.</para>
1889       <para>
1890         <itemizedlist>
1891           <listitem>
1892             <para><emphasis role="italic"><emphasis role="bold">LND timeouts</emphasis></emphasis> -
1893               LND timeouts ensure that point-to-point communications across a network complete in a
1894               finite time in the presence of failures, such as packages lost or broken connections.
1895               LND timeout parameters are set for each individual LND.</para>
1896             <para>LND timeouts are logged with the <literal>S_LND</literal> flag set. They are not
1897               printed as console messages, so check the Lustre log for <literal>D_NETERROR</literal>
1898               messages or enable printing of <literal>D_NETERROR</literal> messages to the console
1899               using:<screen>lctl set_param printk=+neterror</screen></para>
1900             <para>Congested routers can be a source of spurious LND timeouts. To avoid this
1901               situation, increase the number of LNet router buffers to reduce back-pressure and/or
1902               increase LND timeouts on all nodes on all connected networks. Also consider increasing
1903               the total number of LNet router nodes in the system so that the aggregate router
1904               bandwidth matches the aggregate server bandwidth.</para>
1905           </listitem>
1906           <listitem>
1907             <para><emphasis role="italic"><emphasis role="bold">Lustre timeouts
1908                 </emphasis></emphasis>- Lustre timeouts ensure that Lustre RPCs complete in a finite
1909               time in the presence of failures when adaptive timeouts are not enabled. Adaptive
1910               timeouts are enabled by default. To disable adaptive timeouts at run time, set
1911                 <literal>at_max</literal> to 0 by running on the
1912               MGS:<screen># lctl conf_param <replaceable>fsname</replaceable>.sys.at_max=0</screen></para>
1913             <note>
1914               <para>Changing the status of adaptive timeouts at runtime may cause a transient client
1915                 timeout, recovery, and reconnection.</para>
1916             </note>
1917             <para>Lustre timeouts are always printed as console messages. </para>
1918             <para>If Lustre timeouts are not accompanied by LND timeouts, increase the Lustre
1919               timeout on both servers and clients. Lustre timeouts are set using a command such as
1920               the following:<screen># lctl set_param timeout=30</screen></para>
1921             <para>Lustre timeout parameters are described in the table below.</para>
1922           </listitem>
1923         </itemizedlist>
1924         <informaltable frame="all">
1925           <tgroup cols="2">
1926             <colspec colname="c1" colnum="1" colwidth="30*"/>
1927             <colspec colname="c2" colnum="2" colwidth="70*"/>
1928             <thead>
1929               <row>
1930                 <entry>Parameter</entry>
1931                 <entry>Description</entry>
1932               </row>
1933             </thead>
1934             <tbody>
1935               <row>
1936                 <entry><literal>timeout</literal></entry>
1937                 <entry>
1938                   <para>The time that a client waits for a server to complete an RPC (default 100s).
1939                     Servers wait half this time for a normal client RPC to complete and a quarter of
1940                     this time for a single bulk request (read or write of up to 4 MB) to complete.
1941                     The client pings recoverable targets (MDS and OSTs) at one quarter of the
1942                     timeout, and the server waits one and a half times the timeout before evicting a
1943                     client for being &quot;stale.&quot;</para>
1944                   <para>Lustre client sends periodic &apos;ping&apos; messages to servers with which
1945                     it has had no communication for the specified period of time. Any network
1946                     activity between a client and a server in the file system also serves as a
1947                     ping.</para>
1948                 </entry>
1949               </row>
1950               <row>
1951                 <entry><literal>ldlm_timeout</literal></entry>
1952                 <entry>
1953                   <para>The time that a server waits for a client to reply to an initial AST (lock
1954                     cancellation request). The default is 20s for an OST and 6s for an MDS. If the
1955                     client replies to the AST, the server will give it a normal timeout (half the
1956                     client timeout) to flush any dirty data and release the lock.</para>
1957                 </entry>
1958               </row>
1959               <row>
1960                 <entry><literal>fail_loc</literal></entry>
1961                 <entry>
1962                   <para>An internal debugging failure hook. The default value of
1963                       <literal>0</literal> means that no failure will be triggered or
1964                     injected.</para>
1965                 </entry>
1966               </row>
1967               <row>
1968                 <entry><literal>dump_on_timeout</literal></entry>
1969                 <entry>
1970                   <para>Triggers a dump of the Lustre debug log when a timeout occurs. The default
1971                     value of <literal>0</literal> (zero) means a dump of the Lustre debug log will
1972                     not be triggered.</para>
1973                 </entry>
1974               </row>
1975               <row>
1976                 <entry><literal>dump_on_eviction</literal></entry>
1977                 <entry>
1978                   <para>Triggers a dump of the Lustre debug log when an eviction occurs. The default
1979                     value of <literal>0</literal> (zero) means a dump of the Lustre debug log will
1980                     not be triggered. </para>
1981                 </entry>
1982               </row>
1983             </tbody>
1984           </tgroup>
1985         </informaltable>
1986       </para>
1987     </section>
1988   </section>
1989   <section remap="h3">
1990     <title><indexterm>
1991         <primary>proc</primary>
1992         <secondary>LNet</secondary>
1993       </indexterm><indexterm>
1994         <primary>LNet</primary>
1995         <secondary>proc</secondary>
1996       </indexterm>Monitoring LNet</title>
1997     <para>LNet information is located in <literal>/proc/sys/lnet</literal> in these files:<itemizedlist>
1998         <listitem>
1999           <para><literal>peers</literal> - Shows all NIDs known to this node and provides
2000             information on the queue state.</para>
2001           <para>Example:</para>
2002           <screen># lctl get_param peers
2003 nid                refs   state  max  rtr  min   tx    min   queue
2004 0@lo               1      ~rtr   0    0    0     0     0     0
2005 192.168.10.35@tcp  1      ~rtr   8    8    8     8     6     0
2006 192.168.10.36@tcp  1      ~rtr   8    8    8     8     6     0
2007 192.168.10.37@tcp  1      ~rtr   8    8    8     8     6     0</screen>
2008           <para>The fields are explained in the table below:</para>
2009           <informaltable frame="all">
2010             <tgroup cols="2">
2011               <colspec colname="c1" colwidth="30*"/>
2012               <colspec colname="c2" colwidth="80*"/>
2013               <thead>
2014                 <row>
2015                   <entry>
2016                     <para><emphasis role="bold">Field</emphasis></para>
2017                   </entry>
2018                   <entry>
2019                     <para><emphasis role="bold">Description</emphasis></para>
2020                   </entry>
2021                 </row>
2022               </thead>
2023               <tbody>
2024                 <row>
2025                   <entry>
2026                     <para>
2027                       <literal>refs</literal>
2028                     </para>
2029                   </entry>
2030                   <entry>
2031                     <para>A reference count. </para>
2032                   </entry>
2033                 </row>
2034                 <row>
2035                   <entry>
2036                     <para>
2037                       <literal>state</literal>
2038                     </para>
2039                   </entry>
2040                   <entry>
2041                     <para>If the node is a router, indicates the state of the router. Possible
2042                       values are:</para>
2043                     <itemizedlist>
2044                       <listitem>
2045                         <para><literal>NA</literal> - Indicates the node is not a router.</para>
2046                       </listitem>
2047                       <listitem>
2048                         <para><literal>up/down</literal>- Indicates if the node (router) is up or
2049                           down.</para>
2050                       </listitem>
2051                     </itemizedlist>
2052                   </entry>
2053                 </row>
2054                 <row>
2055                   <entry>
2056                     <para>
2057                       <literal>max </literal></para>
2058                   </entry>
2059                   <entry>
2060                     <para>Maximum number of concurrent sends from this peer.</para>
2061                   </entry>
2062                 </row>
2063                 <row>
2064                   <entry>
2065                     <para>
2066                       <literal>rtr </literal></para>
2067                   </entry>
2068                   <entry>
2069                     <para>Number of routing buffer credits.</para>
2070                   </entry>
2071                 </row>
2072                 <row>
2073                   <entry>
2074                     <para>
2075                       <literal>min </literal></para>
2076                   </entry>
2077                   <entry>
2078                     <para>Minimum number of routing buffer credits seen.</para>
2079                   </entry>
2080                 </row>
2081                 <row>
2082                   <entry>
2083                     <para>
2084                       <literal>tx </literal></para>
2085                   </entry>
2086                   <entry>
2087                     <para>Number of send credits.</para>
2088                   </entry>
2089                 </row>
2090                 <row>
2091                   <entry>
2092                     <para>
2093                       <literal>min </literal></para>
2094                   </entry>
2095                   <entry>
2096                     <para>Minimum number of send credits seen.</para>
2097                   </entry>
2098                 </row>
2099                 <row>
2100                   <entry>
2101                     <para>
2102                       <literal>queue </literal></para>
2103                   </entry>
2104                   <entry>
2105                     <para>Total bytes in active/queued sends.</para>
2106                   </entry>
2107                 </row>
2108               </tbody>
2109             </tgroup>
2110           </informaltable>
2111           <para>Credits are initialized to allow a certain number of operations (in the example
2112             above the table, eight as shown in the <literal>max</literal> column. LNet keeps track
2113             of the minimum number of credits ever seen over time showing the peak congestion that
2114             has occurred during the time monitored. Fewer available credits indicates a more
2115             congested resource. </para>
2116           <para>The number of credits currently in flight (number of transmit credits) is shown in
2117             the <literal>tx</literal> column. The maximum number of send credits available is shown
2118             in the <literal>max</literal> column and never changes. The number of router buffers
2119             available for consumption by a peer is shown in the <literal>rtr</literal>
2120             column.</para>
2121           <para>Therefore, <literal>rtr</literal> â€“ <literal>tx</literal> is the number of transmits
2122             in flight. Typically, <literal>rtr == max</literal>, although a configuration can be set
2123             such that <literal>max >= rtr</literal>. The ratio of routing buffer credits to send
2124             credits (<literal>rtr/tx</literal>) that is less than <literal>max</literal> indicates
2125             operations are in progress. If the ratio <literal>rtr/tx</literal> is greater than
2126               <literal>max</literal>, operations are blocking.</para>
2127           <para>LNet also limits concurrent sends and number of router buffers allocated to a single
2128             peer so that no peer can occupy all these resources.</para>
2129         </listitem>
2130         <listitem>
2131           <para><literal>nis</literal> - Shows the current queue health on this node.</para>
2132           <para>Example:</para>
2133           <screen># lctl get_param nis
2134 nid                    refs   peer    max   tx    min
2135 0@lo                   3      0       0     0     0
2136 192.168.10.34@tcp      4      8       256   256   252
2137 </screen>
2138           <para> The fields are explained in the table below.</para>
2139           <informaltable frame="all">
2140             <tgroup cols="2">
2141               <colspec colname="c1" colwidth="30*"/>
2142               <colspec colname="c2" colwidth="80*"/>
2143               <thead>
2144                 <row>
2145                   <entry>
2146                     <para><emphasis role="bold">Field</emphasis></para>
2147                   </entry>
2148                   <entry>
2149                     <para><emphasis role="bold">Description</emphasis></para>
2150                   </entry>
2151                 </row>
2152               </thead>
2153               <tbody>
2154                 <row>
2155                   <entry>
2156                     <para>
2157                       <literal> nid </literal></para>
2158                   </entry>
2159                   <entry>
2160                     <para>Network interface.</para>
2161                   </entry>
2162                 </row>
2163                 <row>
2164                   <entry>
2165                     <para>
2166                       <literal> refs </literal></para>
2167                   </entry>
2168                   <entry>
2169                     <para>Internal reference counter.</para>
2170                   </entry>
2171                 </row>
2172                 <row>
2173                   <entry>
2174                     <para>
2175                       <literal> peer </literal></para>
2176                   </entry>
2177                   <entry>
2178                     <para>Number of peer-to-peer send credits on this NID. Credits are used to size
2179                       buffer pools.</para>
2180                   </entry>
2181                 </row>
2182                 <row>
2183                   <entry>
2184                     <para>
2185                       <literal> max </literal></para>
2186                   </entry>
2187                   <entry>
2188                     <para>Total number of send credits on this NID.</para>
2189                   </entry>
2190                 </row>
2191                 <row>
2192                   <entry>
2193                     <para>
2194                       <literal> tx </literal></para>
2195                   </entry>
2196                   <entry>
2197                     <para>Current number of send credits available on this NID.</para>
2198                   </entry>
2199                 </row>
2200                 <row>
2201                   <entry>
2202                     <para>
2203                       <literal> min </literal></para>
2204                   </entry>
2205                   <entry>
2206                     <para>Lowest number of send credits available on this NID.</para>
2207                   </entry>
2208                 </row>
2209                 <row>
2210                   <entry>
2211                     <para>
2212                       <literal> queue </literal></para>
2213                   </entry>
2214                   <entry>
2215                     <para>Total bytes in active/queued sends.</para>
2216                   </entry>
2217                 </row>
2218               </tbody>
2219             </tgroup>
2220           </informaltable>
2221           <para><emphasis role="bold"><emphasis role="italic">Analysis:</emphasis></emphasis></para>
2222           <para>Subtracting <literal>max</literal> from <literal>tx</literal>
2223               (<literal>max</literal> - <literal>tx</literal>) yields the number of sends currently
2224             active. A large or increasing number of active sends may indicate a problem.</para>
2225         </listitem>
2226       </itemizedlist></para>
2227   </section>
2228   <section remap="h3" xml:id="dbdoclet.balancing_free_space">
2229     <title><indexterm>
2230         <primary>proc</primary>
2231         <secondary>free space</secondary>
2232       </indexterm>Allocating Free Space on OSTs</title>
2233     <para>Free space is allocated using either a round-robin or a weighted
2234     algorithm. The allocation method is determined by the maximum amount of
2235     free-space imbalance between the OSTs. When free space is relatively
2236     balanced across OSTs, the faster round-robin allocator is used, which
2237     maximizes network balancing. The weighted allocator is used when any two
2238     OSTs are out of balance by more than a specified threshold.</para>
2239     <para>Free space distribution can be tuned using these two
2240     <literal>/proc</literal> tunables:</para>
2241     <itemizedlist>
2242       <listitem>
2243         <para><literal>qos_threshold_rr</literal> - The threshold at which
2244         the allocation method switches from round-robin to weighted is set
2245         in this file. The default is to switch to the weighted algorithm when
2246         any two OSTs are out of balance by more than 17 percent.</para>
2247       </listitem>
2248       <listitem>
2249         <para><literal>qos_prio_free</literal> - The weighting priority used
2250         by the weighted allocator can be adjusted in this file. Increasing the
2251         value of <literal>qos_prio_free</literal> puts more weighting on the
2252         amount of free space available on each OST and less on how stripes are
2253         distributed across OSTs. The default value is 91 percent weighting for
2254         free space rebalancing and 9 percent for OST balancing. When the
2255         free space priority is set to 100, weighting is based entirely on free
2256         space and location is no longer used by the striping algorithm.</para>
2257       </listitem>
2258       <listitem>
2259         <para condition="l29"><literal>reserved_mb_low</literal> - The low
2260         watermark used to stop object allocation if available space is less
2261         than it. The default is 0.1 percent of total OST size.</para>
2262       </listitem>
2263        <listitem>
2264         <para condition="l29"><literal>reserved_mb_high</literal> - The high watermark used to start
2265           object allocation if available space is more than it. The default is 0.2 percent of total
2266           OST size.</para>
2267       </listitem>
2268     </itemizedlist>
2269     <para>For more information about monitoring and managing free space, see <xref
2270         xmlns:xlink="http://www.w3.org/1999/xlink" linkend="dbdoclet.50438209_10424"/>.</para>
2271   </section>
2272   <section remap="h3">
2273     <title><indexterm>
2274         <primary>proc</primary>
2275         <secondary>locking</secondary>
2276       </indexterm>Configuring Locking</title>
2277     <para>The <literal>lru_size</literal> parameter is used to control the number of client-side
2278       locks in an LRU cached locks queue. LRU size is dynamic, based on load to optimize the number
2279       of locks available to nodes that have different workloads (e.g., login/build nodes vs. compute
2280       nodes vs. backup nodes).</para>
2281     <para>The total number of locks available is a function of the server RAM. The default limit is
2282       50 locks/1 MB of RAM. If memory pressure is too high, the LRU size is shrunk. The number of
2283       locks on the server is limited to <emphasis role="italic">the number of OSTs per
2284         server</emphasis> * <emphasis role="italic">the number of clients</emphasis> * <emphasis
2285         role="italic">the value of the</emphasis>
2286       <literal>lru_size</literal>
2287       <emphasis role="italic">setting on the client</emphasis> as follows: </para>
2288     <itemizedlist>
2289       <listitem>
2290         <para>To enable automatic LRU sizing, set the <literal>lru_size</literal> parameter to 0. In
2291           this case, the <literal>lru_size</literal> parameter shows the current number of locks
2292           being used on the export. LRU sizing is enabled by default.</para>
2293       </listitem>
2294       <listitem>
2295         <para>To specify a maximum number of locks, set the <literal>lru_size</literal> parameter to
2296           a value other than zero but, normally, less than 100 * <emphasis role="italic">number of
2297             CPUs in client</emphasis>. It is recommended that you only increase the LRU size on a
2298           few login nodes where users access the file system interactively.</para>
2299       </listitem>
2300     </itemizedlist>
2301     <para>To clear the LRU on a single client, and, as a result, flush client cache without changing
2302       the <literal>lru_size</literal> value, run:</para>
2303     <screen>$ lctl set_param ldlm.namespaces.<replaceable>osc_name|mdc_name</replaceable>.lru_size=clear</screen>
2304     <para>If the LRU size is set to be less than the number of existing unused locks, the unused
2305       locks are canceled immediately. Use <literal>echo clear</literal> to cancel all locks without
2306       changing the value.</para>
2307     <note>
2308       <para>The <literal>lru_size</literal> parameter can only be set temporarily using
2309           <literal>lctl set_param</literal>; it cannot be set permanently.</para>
2310     </note>
2311     <para>To disable LRU sizing, on the Lustre clients, run:</para>
2312     <screen>$ lctl set_param ldlm.namespaces.*osc*.lru_size=$((<replaceable>NR_CPU</replaceable>*100))</screen>
2313     <para>Replace <literal><replaceable>NR_CPU</replaceable></literal> with the number of CPUs on
2314       the node.</para>
2315     <para>To determine the number of locks being granted, run:</para>
2316     <screen>$ lctl get_param ldlm.namespaces.*.pool.limit</screen>
2317   </section>
2318   <section xml:id="dbdoclet.50438271_87260">
2319     <title><indexterm>
2320         <primary>proc</primary>
2321         <secondary>thread counts</secondary>
2322       </indexterm>Setting MDS and OSS Thread Counts</title>
2323     <para>MDS and OSS thread counts tunable can be used to set the minimum and maximum thread counts
2324       or get the current number of running threads for the services listed in the table
2325       below.</para>
2326     <informaltable frame="all">
2327       <tgroup cols="2">
2328         <colspec colname="c1" colwidth="50*"/>
2329         <colspec colname="c2" colwidth="50*"/>
2330         <tbody>
2331           <row>
2332             <entry>
2333               <para>
2334                 <emphasis role="bold">Service</emphasis></para>
2335             </entry>
2336             <entry>
2337               <para>
2338                 <emphasis role="bold">Description</emphasis></para>
2339             </entry>
2340           </row>
2341           <row>
2342             <entry>
2343               <literal> mds.MDS.mdt </literal>
2344             </entry>
2345             <entry>
2346               <para>Main metadata operations service</para>
2347             </entry>
2348           </row>
2349           <row>
2350             <entry>
2351               <literal> mds.MDS.mdt_readpage </literal>
2352             </entry>
2353             <entry>
2354               <para>Metadata <literal>readdir</literal> service</para>
2355             </entry>
2356           </row>
2357           <row>
2358             <entry>
2359               <literal> mds.MDS.mdt_setattr </literal>
2360             </entry>
2361             <entry>
2362               <para>Metadata <literal>setattr/close</literal> operations service </para>
2363             </entry>
2364           </row>
2365           <row>
2366             <entry>
2367               <literal> ost.OSS.ost </literal>
2368             </entry>
2369             <entry>
2370               <para>Main data operations service</para>
2371             </entry>
2372           </row>
2373           <row>
2374             <entry>
2375               <literal> ost.OSS.ost_io </literal>
2376             </entry>
2377             <entry>
2378               <para>Bulk data I/O services</para>
2379             </entry>
2380           </row>
2381           <row>
2382             <entry>
2383               <literal> ost.OSS.ost_create </literal>
2384             </entry>
2385             <entry>
2386               <para>OST object pre-creation service</para>
2387             </entry>
2388           </row>
2389           <row>
2390             <entry>
2391               <literal> ldlm.services.ldlm_canceld </literal>
2392             </entry>
2393             <entry>
2394               <para>DLM lock cancel service</para>
2395             </entry>
2396           </row>
2397           <row>
2398             <entry>
2399               <literal> ldlm.services.ldlm_cbd </literal>
2400             </entry>
2401             <entry>
2402               <para>DLM lock grant service</para>
2403             </entry>
2404           </row>
2405         </tbody>
2406       </tgroup>
2407     </informaltable>
2408     <para>For each service, an entry as shown below is
2409       created:<screen>/proc/fs/lustre/<replaceable>service</replaceable>/*/threads_<replaceable>min|max|started</replaceable></screen></para>
2410     <itemizedlist>
2411       <listitem>
2412         <para>To temporarily set this tunable, run:</para>
2413         <screen># lctl <replaceable>get|set</replaceable>_param <replaceable>service</replaceable>.threads_<replaceable>min|max|started</replaceable> </screen>
2414         </listitem>
2415       <listitem>
2416         <para>To permanently set this tunable, run:</para>
2417         <screen># lctl conf_param <replaceable>obdname|fsname.obdtype</replaceable>.threads_<replaceable>min|max|started</replaceable> </screen>
2418         <para condition='l25'>For version 2.5 or later, run:
2419                 <screen># lctl set_param -P <replaceable>service</replaceable>.threads_<replaceable>min|max|started</replaceable></screen></para>
2420       </listitem>
2421     </itemizedlist>
2422       <para>The following examples show how to set thread counts and get the number of running threads
2423         for the service <literal>ost_io</literal>  using the tunable
2424         <literal><replaceable>service</replaceable>.threads_<replaceable>min|max|started</replaceable></literal>.</para>
2425     <itemizedlist>
2426       <listitem>
2427         <para>To get the number of running threads, run:</para>
2428         <screen># lctl get_param ost.OSS.ost_io.threads_started
2429 ost.OSS.ost_io.threads_started=128</screen>
2430       </listitem>
2431       <listitem>
2432         <para>To set the number of threads to the maximum value (512), run:</para>
2433         <screen># lctl get_param ost.OSS.ost_io.threads_max
2434 ost.OSS.ost_io.threads_max=512</screen>
2435       </listitem>
2436       <listitem>
2437         <para>To set the maximum thread count to 256 instead of 512 (to avoid overloading the
2438           storage or for an array with requests), run:</para>
2439         <screen># lctl set_param ost.OSS.ost_io.threads_max=256
2440 ost.OSS.ost_io.threads_max=256</screen>
2441       </listitem>
2442       <listitem>
2443         <para>To set the maximum thread count to 256 instead of 512 permanently, run:</para>
2444         <screen># lctl conf_param testfs.ost.ost_io.threads_max=256</screen>
2445         <para condition='l25'>For version 2.5 or later, run:
2446         <screen># lctl set_param -P ost.OSS.ost_io.threads_max=256
2447 ost.OSS.ost_io.threads_max=256 </screen> </para>
2448       </listitem>
2449       <listitem>
2450         <para> To check if the <literal>threads_max</literal> setting is active, run:</para>
2451         <screen># lctl get_param ost.OSS.ost_io.threads_max
2452 ost.OSS.ost_io.threads_max=256</screen>
2453       </listitem>
2454     </itemizedlist>
2455     <note>
2456       <para>If the number of service threads is changed while the file system is running, the change
2457         may not take effect until the file system is stopped and rest. If the number of service
2458         threads in use exceeds the new <literal>threads_max</literal> value setting, service threads
2459         that are already running will not be stopped.</para>
2460     </note>
2461     <para>See also <xref xmlns:xlink="http://www.w3.org/1999/xlink" linkend="lustretuning"/></para>
2462   </section>
2463   <section xml:id="dbdoclet.50438271_83523">
2464     <title><indexterm>
2465         <primary>proc</primary>
2466         <secondary>debug</secondary>
2467       </indexterm>Enabling and Interpreting Debugging Logs</title>
2468     <para>By default, a detailed log of all operations is generated to aid in debugging. Flags that
2469       control debugging are found in <literal>/proc/sys/lnet/debug</literal>. </para>
2470     <para>The overhead of debugging can affect the performance of Lustre file system. Therefore, to
2471       minimize the impact on performance, the debug level can be lowered, which affects the amount
2472       of debugging information kept in the internal log buffer but does not alter the amount of
2473       information to goes into syslog. You can raise the debug level when you need to collect logs
2474       to debug problems. </para>
2475     <para>The debugging mask can be set using &quot;symbolic names&quot;. The symbolic format is
2476       shown in the examples below.<itemizedlist>
2477         <listitem>
2478           <para>To verify the debug level used, examine the <literal>sysctl</literal> that controls
2479             debugging by running:</para>
2480           <screen># sysctl lnet.debug 
2481 lnet.debug = ioctl neterror warning error emerg ha config console</screen>
2482         </listitem>
2483         <listitem>
2484           <para>To turn off debugging (except for network error debugging), run the following
2485             command on all nodes concerned:</para>
2486           <screen># sysctl -w lnet.debug=&quot;neterror&quot; 
2487 lnet.debug = neterror</screen>
2488         </listitem>
2489       </itemizedlist><itemizedlist>
2490         <listitem>
2491           <para>To turn off debugging completely, run the following command on all nodes
2492             concerned:</para>
2493           <screen># sysctl -w lnet.debug=0 
2494 lnet.debug = 0</screen>
2495         </listitem>
2496         <listitem>
2497           <para>To set an appropriate debug level for a production environment, run:</para>
2498           <screen># sysctl -w lnet.debug=&quot;warning dlmtrace error emerg ha rpctrace vfstrace&quot; 
2499 lnet.debug = warning dlmtrace error emerg ha rpctrace vfstrace</screen>
2500           <para>The flags shown in this example collect enough high-level information to aid
2501             debugging, but they do not cause any serious performance impact.</para>
2502         </listitem>
2503       </itemizedlist><itemizedlist>
2504         <listitem>
2505           <para>To clear all flags and set new flags, run:</para>
2506           <screen># sysctl -w lnet.debug=&quot;warning&quot; 
2507 lnet.debug = warning</screen>
2508         </listitem>
2509       </itemizedlist><itemizedlist>
2510         <listitem>
2511           <para>To add new flags to flags that have already been set, precede each one with a
2512               &quot;<literal>+</literal>&quot;:</para>
2513           <screen># sysctl -w lnet.debug=&quot;+neterror +ha&quot; 
2514 lnet.debug = +neterror +ha
2515 # sysctl lnet.debug 
2516 lnet.debug = neterror warning ha</screen>
2517         </listitem>
2518         <listitem>
2519           <para>To remove individual flags, precede them with a
2520             &quot;<literal>-</literal>&quot;:</para>
2521           <screen># sysctl -w lnet.debug=&quot;-ha&quot; 
2522 lnet.debug = -ha
2523 # sysctl lnet.debug 
2524 lnet.debug = neterror warning</screen>
2525         </listitem>
2526         <listitem>
2527           <para>To verify or change the debug level, run commands such as the following: :</para>
2528           <screen># lctl get_param debug
2529 debug=
2530 neterror warning
2531 # lctl set_param debug=+ha
2532 # lctl get_param debug
2533 debug=
2534 neterror warning ha
2535 # lctl set_param debug=-warning
2536 # lctl get_param debug
2537 debug=
2538 neterror ha</screen>
2539         </listitem>
2540       </itemizedlist></para>
2541     <para>Debugging parameters include:</para>
2542     <itemizedlist>
2543       <listitem>
2544         <para><literal>subsystem_debug</literal> - Controls the debug logs for subsystems.</para>
2545       </listitem>
2546       <listitem>
2547         <para><literal>debug_path</literal> - Indicates the location where the debug log is dumped
2548           when triggered automatically or manually. The default path is
2549             <literal>/tmp/lustre-log</literal>.</para>
2550       </listitem>
2551     </itemizedlist>
2552     <para>These parameters are also set using:<screen>sysctl -w lnet.debug={value}</screen></para>
2553     <para>Additional useful parameters: <itemizedlist>
2554         <listitem>
2555           <para><literal>panic_on_lbug</literal> - Causes &apos;&apos;panic&apos;&apos; to be called
2556             when the Lustre software detects an internal problem (an <literal>LBUG</literal> log
2557             entry); panic crashes the node. This is particularly useful when a kernel crash dump
2558             utility is configured. The crash dump is triggered when the internal inconsistency is
2559             detected by the Lustre software. </para>
2560         </listitem>
2561         <listitem>
2562           <para><literal>upcall</literal> - Allows you to specify the path to the binary which will
2563             be invoked when an <literal>LBUG</literal> log entry is encountered. This binary is
2564             called with four parameters:</para>
2565           <para> - The string &apos;&apos;<literal>LBUG</literal>&apos;&apos;.</para>
2566           <para> - The file where the <literal>LBUG</literal> occurred.</para>
2567           <para> - The function name.</para>
2568           <para> - The line number in the file</para>
2569         </listitem>
2570       </itemizedlist></para>
2571     <section>
2572       <title>Interpreting OST Statistics</title>
2573       <note>
2574         <para>See also <xref linkend="dbdoclet.50438219_84890"/> (<literal>llobdstat</literal>) and
2575             <xref linkend="dbdoclet.50438273_80593"/> (<literal>collectl</literal>).</para>
2576       </note>
2577       <para>OST <literal>stats</literal> files can be used to provide statistics showing activity
2578         for each OST. For example:</para>
2579       <screen># lctl get_param osc.testfs-OST0000-osc.stats 
2580 snapshot_time                      1189732762.835363
2581 ost_create                 1
2582 ost_get_info               1
2583 ost_connect                1
2584 ost_set_info               1
2585 obd_ping                   212</screen>
2586       <para>Use the <literal>llstat</literal> utility to monitor statistics over time.</para>
2587       <para>To clear the statistics, use the <literal>-c</literal> option to
2588           <literal>llstat</literal>. To specify how frequently the statistics should be reported (in
2589         seconds), use the <literal>-i</literal> option. In the example below, the
2590           <literal>-c</literal> option clears the statistics and <literal>-i10</literal> option
2591         reports statistics every 10 seconds:</para>
2592       <screen role="smaller">$ llstat -c -i10 /proc/fs/lustre/ost/OSS/ost_io/stats
2593  
2594 /usr/bin/llstat: STATS on 06/06/07 
2595         /proc/fs/lustre/ost/OSS/ost_io/ stats on 192.168.16.35@tcp
2596 snapshot_time                              1181074093.276072
2597  
2598 /proc/fs/lustre/ost/OSS/ost_io/stats @ 1181074103.284895
2599 Name        Cur.  Cur. #
2600             Count Rate Events Unit  last   min    avg       max    stddev
2601 req_waittime 8    0    8    [usec]  2078   34     259.75    868    317.49
2602 req_qdepth   8    0    8    [reqs]  1      0      0.12      1      0.35
2603 req_active   8    0    8    [reqs]  11     1      1.38      2      0.52
2604 reqbuf_avail 8    0    8    [bufs]  511    63     63.88     64     0.35
2605 ost_write    8    0    8    [bytes] 169767 72914  212209.62 387579 91874.29
2606  
2607 /proc/fs/lustre/ost/OSS/ost_io/stats @ 1181074113.290180
2608 Name        Cur.  Cur. #
2609             Count Rate Events Unit  last    min   avg       max    stddev
2610 req_waittime 31   3    39   [usec]  30011   34    822.79    12245  2047.71
2611 req_qdepth   31   3    39   [reqs]  0       0     0.03      1      0.16
2612 req_active   31   3    39   [reqs]  58      1     1.77      3      0.74
2613 reqbuf_avail 31   3    39   [bufs]  1977    63    63.79     64     0.41
2614 ost_write    30   3    38   [bytes] 1028467 15019 315325.16 910694 197776.51
2615  
2616 /proc/fs/lustre/ost/OSS/ost_io/stats @ 1181074123.325560
2617 Name        Cur.  Cur. #
2618             Count Rate Events Unit  last    min    avg       max    stddev
2619 req_waittime 21   2    60   [usec]  14970   34     784.32    12245  1878.66
2620 req_qdepth   21   2    60   [reqs]  0       0      0.02      1      0.13
2621 req_active   21   2    60   [reqs]  33      1      1.70      3      0.70
2622 reqbuf_avail 21   2    60   [bufs]  1341    63     63.82     64     0.39
2623 ost_write    21   2    59   [bytes] 7648424 15019  332725.08 910694 180397.87
2624 </screen>
2625       <para>The columns in this example are described in the table below.</para>
2626       <informaltable frame="all">
2627         <tgroup cols="2">
2628           <colspec colname="c1" colwidth="50*"/>
2629           <colspec colname="c2" colwidth="50*"/>
2630           <thead>
2631             <row>
2632               <entry>
2633                 <para><emphasis role="bold">Parameter</emphasis></para>
2634               </entry>
2635               <entry>
2636                 <para><emphasis role="bold">Description</emphasis></para>
2637               </entry>
2638             </row>
2639           </thead>
2640           <tbody>
2641             <row>
2642               <entry><literal>Name</literal></entry>
2643               <entry>Name of the service event.  See the tables below for descriptions of service
2644                 events that are tracked.</entry>
2645             </row>
2646             <row>
2647               <entry>
2648                 <para>
2649                   <literal>Cur. Count </literal></para>
2650               </entry>
2651               <entry>
2652                 <para>Number of events of each type sent in the last interval.</para>
2653               </entry>
2654             </row>
2655             <row>
2656               <entry>
2657                 <para>
2658                   <literal>Cur. Rate </literal></para>
2659               </entry>
2660               <entry>
2661                 <para>Number of events per second in the last interval.</para>
2662               </entry>
2663             </row>
2664             <row>
2665               <entry>
2666                 <para>
2667                   <literal> # Events </literal></para>
2668               </entry>
2669               <entry>
2670                 <para>Total number of such events since the events have been cleared.</para>
2671               </entry>
2672             </row>
2673             <row>
2674               <entry>
2675                 <para>
2676                   <literal> Unit </literal></para>
2677               </entry>
2678               <entry>
2679                 <para>Unit of measurement for that statistic (microseconds, requests,
2680                   buffers).</para>
2681               </entry>
2682             </row>
2683             <row>
2684               <entry>
2685                 <para>
2686                   <literal> last </literal></para>
2687               </entry>
2688               <entry>
2689                 <para>Average rate of these events (in units/event) for the last interval during
2690                   which they arrived. For instance, in the above mentioned case of
2691                     <literal>ost_destroy</literal> it took an average of 736 microseconds per
2692                   destroy for the 400 object destroys in the previous 10 seconds.</para>
2693               </entry>
2694             </row>
2695             <row>
2696               <entry>
2697                 <para>
2698                   <literal> min </literal></para>
2699               </entry>
2700               <entry>
2701                 <para>Minimum rate (in units/events) since the service started.</para>
2702               </entry>
2703             </row>
2704             <row>
2705               <entry>
2706                 <para>
2707                   <literal> avg </literal></para>
2708               </entry>
2709               <entry>
2710                 <para>Average rate.</para>
2711               </entry>
2712             </row>
2713             <row>
2714               <entry>
2715                 <para>
2716                   <literal> max </literal></para>
2717               </entry>
2718               <entry>
2719                 <para>Maximum rate.</para>
2720               </entry>
2721             </row>
2722             <row>
2723               <entry>
2724                 <para>
2725                   <literal> stddev </literal></para>
2726               </entry>
2727               <entry>
2728                 <para>Standard deviation (not measured in some cases)</para>
2729               </entry>
2730             </row>
2731           </tbody>
2732         </tgroup>
2733       </informaltable>
2734       <para>Events common to all services are shown in the table below.</para>
2735       <informaltable frame="all">
2736         <tgroup cols="2">
2737           <colspec colname="c1" colwidth="50*"/>
2738           <colspec colname="c2" colwidth="50*"/>
2739           <thead>
2740             <row>
2741               <entry>
2742                 <para><emphasis role="bold">Parameter</emphasis></para>
2743               </entry>
2744               <entry>
2745                 <para><emphasis role="bold">Description</emphasis></para>
2746               </entry>
2747             </row>
2748           </thead>
2749           <tbody>
2750             <row>
2751               <entry>
2752                 <para>
2753                   <literal> req_waittime </literal></para>
2754               </entry>
2755               <entry>
2756                 <para>Amount of time a request waited in the queue before being handled by an
2757                   available server thread.</para>
2758               </entry>
2759             </row>
2760             <row>
2761               <entry>
2762                 <para>
2763                   <literal> req_qdepth </literal></para>
2764               </entry>
2765               <entry>
2766                 <para>Number of requests waiting to be handled in the queue for this service.</para>
2767               </entry>
2768             </row>
2769             <row>
2770               <entry>
2771                 <para>
2772                   <literal> req_active </literal></para>
2773               </entry>
2774               <entry>
2775                 <para>Number of requests currently being handled.</para>
2776               </entry>
2777             </row>
2778             <row>
2779               <entry>
2780                 <para>
2781                   <literal> reqbuf_avail </literal></para>
2782               </entry>
2783               <entry>
2784                 <para>Number of unsolicited lnet request buffers for this service.</para>
2785               </entry>
2786             </row>
2787           </tbody>
2788         </tgroup>
2789       </informaltable>
2790       <para>Some service-specific events of interest are described in the table below.</para>
2791       <informaltable frame="all">
2792         <tgroup cols="2">
2793           <colspec colname="c1" colwidth="50*"/>
2794           <colspec colname="c2" colwidth="50*"/>
2795           <thead>
2796             <row>
2797               <entry>
2798                 <para><emphasis role="bold">Parameter</emphasis></para>
2799               </entry>
2800               <entry>
2801                 <para><emphasis role="bold">Description</emphasis></para>
2802               </entry>
2803             </row>
2804           </thead>
2805           <tbody>
2806             <row>
2807               <entry>
2808                 <para>
2809                   <literal> ldlm_enqueue </literal></para>
2810               </entry>
2811               <entry>
2812                 <para>Time it takes to enqueue a lock (this includes file open on the MDS)</para>
2813               </entry>
2814             </row>
2815             <row>
2816               <entry>
2817                 <para>
2818                   <literal> mds_reint </literal></para>
2819               </entry>
2820               <entry>
2821                 <para>Time it takes to process an MDS modification record (includes
2822                     <literal>create</literal>, <literal>mkdir</literal>, <literal>unlink</literal>,
2823                     <literal>rename</literal> and <literal>setattr</literal>)</para>
2824               </entry>
2825             </row>
2826           </tbody>
2827         </tgroup>
2828       </informaltable>
2829     </section>
2830     <section>
2831       <title>Interpreting MDT Statistics</title>
2832       <note>
2833         <para>See also <xref linkend="dbdoclet.50438219_84890"/> (<literal>llobdstat</literal>) and
2834             <xref linkend="dbdoclet.50438273_80593"/> (<literal>collectl</literal>).</para>
2835       </note>
2836       <para>MDT <literal>stats</literal> files can be used to track MDT
2837       statistics for the MDS. The example below shows sample output from an
2838       MDT <literal>stats</literal> file.</para>
2839       <screen># lctl get_param mds.*-MDT0000.stats
2840 snapshot_time                   1244832003.676892 secs.usecs 
2841 open                            2 samples [reqs]
2842 close                           1 samples [reqs]
2843 getxattr                        3 samples [reqs]
2844 process_config                  1 samples [reqs]
2845 connect                         2 samples [reqs]
2846 disconnect                      2 samples [reqs]
2847 statfs                          3 samples [reqs]
2848 setattr                         1 samples [reqs]
2849 getattr                         3 samples [reqs]
2850 llog_init                       6 samples [reqs] 
2851 notify                          16 samples [reqs]</screen>
2852     </section>
2853   </section>
2854 </chapter>