Whamcloud - gitweb
LUDOC-11 utilities: remove --count flag
[doc/manual.git] / ManagingStripingFreeSpace.xml
1 <?xml version='1.0' encoding='UTF-8'?><chapter xmlns="http://docbook.org/ns/docbook" xmlns:xl="http://www.w3.org/1999/xlink" version="5.0" xml:lang="en-US" xml:id="managingstripingfreespace">
2   <title xml:id="managingstripingfreespace.title">Managing File Layout (Striping) and Free
3     Space</title>
4   <para>This chapter describes file layout (striping) and I/O options, and includes the following
5     sections:</para>
6   <itemizedlist>
7     <listitem>
8       <para><xref linkend="dbdoclet.50438209_79324"/></para>
9     </listitem>
10     <listitem>
11       <para><xref linkend="dbdoclet.50438209_48033"/></para>
12     </listitem>
13     <listitem>
14       <para><xref linkend="dbdoclet.50438209_78664"/></para>
15     </listitem>
16     <listitem>
17       <para><xref linkend="dbdoclet.50438209_44776"/></para>
18     </listitem>
19     <listitem>
20       <para><xref linkend="dbdoclet.50438209_10424"/></para>
21     </listitem>
22     <listitem>
23       <para><xref xmlns:xlink="http://www.w3.org/1999/xlink" linkend="wide_striping"/></para>
24     </listitem>
25   </itemizedlist>
26   <section xml:id="dbdoclet.50438209_79324">
27       <title>
28       <indexterm>
29         <primary>space</primary>
30       </indexterm>
31       <indexterm>
32         <primary>striping</primary>
33         <secondary>how it works</secondary>
34       </indexterm>
35       <indexterm>
36         <primary>striping</primary>
37         <see>space</see>
38       </indexterm>
39       <indexterm>
40         <primary>space</primary>
41         <secondary>striping</secondary>
42       </indexterm>How Lustre File System Striping Works</title>
43     <para>In a Lustre file system, the MDS allocates objects to OSTs using either a round-robin
44       algorithm or a weighted algorithm. When the amount of free space is well balanced (i.e., by
45       default, when the free space across OSTs differs by less than 17%), the round-robin algorithm
46       is used to select the next OST to which a stripe is to be written. Periodically, the MDS
47       adjusts the striping layout to eliminate some degenerated cases in which applications that
48       create very regular file layouts (striping patterns) preferentially use a particular OST in
49       the sequence.</para>
50     <para> Normally the usage of OSTs is well balanced. However, if users create a small number of
51       exceptionally large files or incorrectly specify striping parameters, imbalanced OST usage may
52       result. When the free space across OSTs differs by more than a specific amount (17% by
53       default), the MDS then uses weighted random allocations with a preference for allocating
54       objects on OSTs with more free space. (This can reduce I/O performance until space usage is
55       rebalanced again.) For a more detailed description of how striping is allocated, see <xref
56         linkend="dbdoclet.50438209_10424"/>.</para>
57     <para>Files can only be striped over a finite number of OSTs, based on the
58     maximum size of the attributes that can be stored on the MDT. If the MDT
59     is ldiskfs-based without the <literal>ea_inode</literal> feature, a file
60     can be striped across at most 160 OSTs.  With a ZFS-based MDT, or if the
61     <literal>ea_inode</literal> feature is enabled for an ldiskfs-based MDT,
62     a file can be striped across up to 2000 OSTs. For more information, see
63     <xref xmlns:xlink="http://www.w3.org/1999/xlink" linkend="wide_striping"/>.
64     </para>
65   </section>
66   <section xml:id="dbdoclet.50438209_48033">
67       <title><indexterm>
68         <primary>file layout</primary>
69         <secondary>See striping</secondary>
70       </indexterm><indexterm>
71         <primary>striping</primary>
72         <secondary>considerations</secondary>
73       </indexterm>
74       <indexterm>
75         <primary>space</primary>
76         <secondary>considerations</secondary>
77       </indexterm> Lustre File Layout (Striping) Considerations</title>
78     <para>Whether you should set up file striping and what parameter values you select depends on
79       your needs. A good rule of thumb is to stripe over as few objects as will meet those needs and
80       no more.</para>
81     <para>Some reasons for using striping include:</para>
82     <itemizedlist>
83       <listitem>
84         <para><emphasis role="bold">Providing high-bandwidth access.</emphasis> Many applications
85           require high-bandwidth access to a single file, which may be more bandwidth than can be
86           provided by a single OSS. Examples are a scientific application that writes to a single
87           file from hundreds of nodes, or a binary executable that is loaded by many nodes when an
88           application starts.</para>
89         <para>In cases like these, a file can be striped over as many OSSs as it takes to achieve
90           the required peak aggregate bandwidth for that file. Striping across a larger number of
91           OSSs should only be used when the file size is very large and/or is accessed by many nodes
92           at a time. Currently, Lustre files can be striped across up to 2000 OSTs</para>
93       </listitem>
94       <listitem>
95         <para><emphasis role="bold">Improving performance when OSS bandwidth is exceeded.</emphasis>
96           Striping across many OSSs can improve performance if the aggregate client bandwidth
97           exceeds the server bandwidth and the application reads and writes data fast enough to take
98           advantage of the additional OSS bandwidth. The largest useful stripe count is bounded by
99           the I/O rate of the clients/jobs divided by the performance per OSS.</para>
100       </listitem>
101       <listitem>
102         <para condition="l2D"><emphasis role="bold">Matching stripes to I/O
103         pattern.</emphasis>When writing to a single file from multiple nodes,
104         having more than one client writing to a stripe can lead to issues
105         with lock exchange, where clients contend over writing to that stripe,
106         even if their I/Os do not overlap.  This can be avoided if I/O can be
107         stripe aligned so that each stripe is accessed by only one client.
108         Since Lustre 2.13, the 'overstriping' feature is available, allowing more
109         than stripe per OST.  This is particularly helpful for the case where
110         thread count exceeds OST count, making it possible to match stripe count
111         to thread count even in this case.</para>
112       </listitem>
113       <listitem>
114         <para><emphasis role="bold">Providing space for very large files.</emphasis> Striping is
115           useful when a single OST does not have enough free space to hold the entire file.</para>
116       </listitem>
117     </itemizedlist>
118     <para>Some reasons to minimize or avoid striping:</para>
119     <itemizedlist>
120       <listitem>
121         <para><emphasis role="bold">Increased overhead.</emphasis> Striping results in more locks
122           and extra network operations during common operations such as <literal>stat</literal> and
123             <literal>unlink</literal>. Even when these operations are performed in parallel, one
124           network operation takes less time than 100 operations.</para>
125         <para>Increased overhead also results from server contention. Consider a cluster with 100
126           clients and 100 OSSs, each with one OST. If each file has exactly one object and the load
127           is distributed evenly, there is no contention and the disks on each server can manage
128           sequential I/O. If each file has 100 objects, then the clients all compete with one
129           another for the attention of the servers, and the disks on each node seek in 100 different
130           directions resulting in needless contention.</para>
131       </listitem>
132       <listitem>
133         <para><emphasis role="bold">Increased risk.</emphasis> When files are striped across all
134           servers and one of the servers breaks down, a small part of each striped file is lost. By
135           comparison, if each file has exactly one stripe, fewer files are lost, but they are lost
136           in their entirety. Many users would prefer to lose some of their files entirely than all
137           of their files partially.</para>
138       </listitem>
139     </itemizedlist>
140     <section remap="h3">
141         <title><indexterm><primary>striping</primary><secondary>size</secondary></indexterm>
142             Choosing a Stripe Size</title>
143       <para>Choosing a stripe size is a balancing act, but reasonable defaults are described below.
144         The stripe size has no effect on a single-stripe file.</para>
145       <itemizedlist>
146         <listitem>
147           <para><emphasis role="bold">The stripe size must be a multiple of the page
148               size.</emphasis> Lustre software tools enforce a multiple of 64 KB (the maximum page
149             size on ia64 and PPC64 nodes) so that users on platforms with smaller pages do not
150             accidentally create files that might cause problems for ia64 clients.</para>
151         </listitem>
152         <listitem>
153           <para><emphasis role="bold">The smallest recommended stripe size is 512 KB.</emphasis>
154             Although you can create files with a stripe size of 64 KB, the smallest practical stripe
155             size is 512 KB because the Lustre file system sends 1MB chunks over the network.
156             Choosing a smaller stripe size may result in inefficient I/O to the disks and reduced
157             performance.</para>
158         </listitem>
159         <listitem>
160           <para><emphasis role="bold">A good stripe size for sequential I/O using high-speed
161               networks is between 1 MB and 4 MB.</emphasis> In most situations, stripe sizes larger
162             than 4 MB may result in longer lock hold times and contention during shared file
163             access.</para>
164         </listitem>
165         <listitem>
166           <para><emphasis role="bold">The maximum stripe size is 4 GB.</emphasis> Using a large
167             stripe size can improve performance when accessing very large files. It allows each
168             client to have exclusive access to its own part of a file. However, a large stripe size
169             can be counterproductive in cases where it does not match your I/O pattern.</para>
170         </listitem>
171         <listitem>
172           <para><emphasis role="bold">Choose a stripe pattern that takes into account the write
173               patterns of your application.</emphasis> Writes that cross an object boundary are
174             slightly less efficient than writes that go entirely to one server. If the file is
175             written in a consistent and aligned way, make the stripe size a multiple of the
176               <literal>write()</literal> size.</para>
177         </listitem>
178       </itemizedlist>
179     </section>
180   </section>
181   <section xml:id="dbdoclet.50438209_78664">
182       <title><indexterm>
183         <primary>striping</primary>
184         <secondary>configuration</secondary>
185       </indexterm>Setting the File Layout/Striping Configuration (<literal>lfs
186       setstripe</literal>)</title>
187     <para>Use the <literal>lfs setstripe</literal> command to create new files with a specific file layout (stripe pattern) configuration.</para>
188     <screen>lfs setstripe [--size|-s stripe_size] [--stripe-count|-c stripe_count] [--overstripe-count|-C stripe_count] \
189 [--index|-i start_ost] [--pool|-p pool_name] <replaceable>filename|dirname</replaceable> </screen>
190     <para><emphasis role="bold">
191         <literal>stripe_size</literal>
192       </emphasis>
193       </para>
194     <para>The <literal>stripe_size</literal> indicates how much data to write to one OST before
195       moving to the next OST. The default <literal>stripe_size</literal> is 1 MB. Passing a
196         <literal>stripe_size</literal> of 0 causes the default stripe size to be used. Otherwise,
197       the <literal>stripe_size</literal> value must be a multiple of 64 KB.</para>
198     <para><emphasis role="bold">
199         <literal>stripe_count (--stripe-count, --overstripe-count)</literal>
200       </emphasis>
201     </para>
202     <para>The <literal>stripe_count</literal> indicates how many stripes to use.
203     The default <literal>stripe_count</literal> value is 1. Setting
204     <literal>stripe_count</literal> to 0 causes the default stripe count to be
205     used. Setting <literal>stripe_count</literal> to -1 means stripe over all
206     available OSTs (full OSTs are skipped).  When --overstripe-count is used,
207     per OST if necessary.</para>
208     <para><emphasis role="bold">
209         <literal>start_ost</literal>
210       </emphasis>
211       </para>
212     <para>The start OST is the first OST to which files are written. The default value for
213         <literal>start_ost</literal> is -1, which allows the MDS to choose the starting index. This
214       setting is strongly recommended, as it allows space and load balancing to be done by the MDS
215       as needed. If the value of <literal>start_ost</literal> is set to a value other than -1, the
216       file starts on the specified OST index. OST index numbering starts at 0.</para>
217     <note>
218       <para>If the specified OST is inactive or in a degraded mode, the MDS will silently choose
219         another target.</para>
220     </note>
221     <note>
222       <para>If you pass a <literal>start_ost</literal> value of 0 and a
223           <literal>stripe_count</literal> value of <emphasis>1</emphasis>, all files are written to
224         OST 0, until space is exhausted. <emphasis role="italic">This is probably not what you meant
225           to do.</emphasis> If you only want to adjust the stripe count and keep the other
226         parameters at their default settings, do not specify any of the other parameters:</para>
227       <para><screen>client# lfs setstripe -c <replaceable>stripe_count</replaceable> <replaceable>filename</replaceable></screen></para>
228     </note>
229     <para><emphasis role="bold">
230         <literal>pool_name</literal>
231       </emphasis>
232       </para>
233     <para>The <literal>pool_name</literal> specifies the OST pool to which the file will be written.
234       This allows limiting the OSTs used to a subset of all OSTs in the file system. For more
235       details about using OST pools, see <link xl:href="ManagingFileSystemIO.html#50438211_75549"
236         >Creating and Managing OST Pools</link>.</para>
237     <section remap="h3">
238       <title>Specifying a File Layout (Striping Pattern) for a Single File</title>
239       <para>It is possible to specify the file layout when a new file is created using the command <literal>lfs setstripe</literal>. This allows users to override the file system default parameters to tune the file layout more optimally for their application. Execution of an <literal>lfs setstripe</literal> command fails if the file already exists.</para>
240       <section xml:id="dbdoclet.50438209_60155">
241         <title>Setting the Stripe Size</title>
242         <para>The command to create a new file with a specified stripe size is similar to:</para>
243         <screen>[client]# lfs setstripe -s 4M /mnt/lustre/new_file</screen>
244         <para>This example command creates the new file <literal>/mnt/lustre/new_file</literal> with a stripe size of 4 MB.</para>
245         <para>Now, when the file is created, the new stripe setting creates the file on a single OST with a stripe size of 4M:</para>
246         <screen> [client]# lfs getstripe /mnt/lustre/new_file
247 /mnt/lustre/4mb_file
248 lmm_stripe_count:   1
249 lmm_stripe_size:    4194304
250 lmm_pattern:        1
251 lmm_layout_gen:     0
252 lmm_stripe_offset:  1
253 obdidx     objid        objid           group
254 1          690550       0xa8976         0 </screen>
255         <para>In this example, the stripe size is 4 MB.</para>
256       </section>
257       <section remap="h4">
258           <title><indexterm><primary>striping</primary><secondary>count</secondary></indexterm>
259               Setting the Stripe Count</title>
260         <para>The command below creates a new file with a stripe count of <literal>-1</literal> to
261           specify striping over all available OSTs:</para>
262         <screen>[client]# lfs setstripe -c -1 /mnt/lustre/full_stripe</screen>
263         <para>The example below indicates that the file <literal>full_stripe</literal> is striped
264           over all six active OSTs in the configuration:</para>
265         <screen>[client]# lfs getstripe /mnt/lustre/full_stripe
266 /mnt/lustre/full_stripe
267   obdidx   objid   objid   group
268   0        8       0x8     0
269   1        4       0x4     0
270   2        5       0x5     0
271   3        5       0x5     0
272   4        4       0x4     0
273   5        2       0x2     0</screen>
274         <para> This is in contrast to the output in <xref linkend="dbdoclet.50438209_60155"/>, which
275           shows only a single object for the file.</para>
276       </section>
277     </section>
278     <section remap="h3">
279       <title><indexterm>
280           <primary>striping</primary>
281           <secondary>per directory</secondary>
282         </indexterm>Setting the Striping Layout for a Directory</title>
283       <para>In a directory, the <literal>lfs setstripe</literal> command sets a default striping
284         configuration for files created in the directory. The usage is the same as <literal>lfs
285           setstripe</literal> for a regular file, except that the directory must exist prior to
286         setting the default striping configuration. If a file is created in a directory with a
287         default stripe configuration (without otherwise specifying striping), the Lustre file system
288         uses those striping parameters instead of the file system default for the new file.</para>
289       <para>To change the striping pattern for a sub-directory, create a directory with desired file
290         layout as described above. Sub-directories inherit the file layout of the root/parent
291         directory.</para>
292     </section>
293     <section remap="h3">
294       <title><indexterm>
295           <primary>striping</primary>
296           <secondary>per file system</secondary>
297         </indexterm>Setting the Striping Layout for a File System</title>
298       <para>Setting the striping specification on the <literal>root</literal> directory determines
299         the striping for all new files created in the file system unless an overriding striping
300         specification takes precedence (such as a striping layout specified by the application, or
301         set using <literal>lfs setstripe</literal>, or specified for the parent directory).</para>
302       <note>
303         <para>The striping settings for a <literal>root</literal> directory are, by default, applied
304           to any new child directories created in the root directory, unless striping settings have
305           been specified for the child directory.</para>
306       </note>
307     </section>
308     <section remap="h3">
309       <title><indexterm>
310           <primary>striping</primary>
311           <secondary>on specific OST</secondary>
312         </indexterm>Creating a File on a Specific OST</title>
313       <para>You can use <literal>lfs setstripe</literal> to create a file on a specific OST. In the
314         following example, the file <literal>file1</literal> is created on the first OST (OST index
315         is 0).</para>
316       <screen>$ lfs setstripe --stripe-count 1 --index 0 file1
317 $ dd if=/dev/zero of=file1 count=1 bs=100M
318 1+0 records in
319 1+0 records out
320
321 $ lfs getstripe file1
322 /mnt/testfs/file1
323 lmm_stripe_count:   1
324 lmm_stripe_size:    1048576
325 lmm_pattern:        1
326 lmm_layout_gen:     0
327 lmm_stripe_offset:  0
328      obdidx    objid   objid    group
329      0         37364   0x91f4   0</screen>
330     </section>
331   </section>
332   <section xml:id="dbdoclet.50438209_44776">
333     <title><indexterm><primary>striping</primary><secondary>getting information</secondary></indexterm>Retrieving File Layout/Striping Information (<literal>getstripe</literal>)</title>
334     <para>The <literal>lfs getstripe</literal> command is used to display information that shows
335       over which OSTs a file is distributed. For each OST, the index and UUID is displayed, along
336       with the OST index and object ID for each stripe in the file. For directories, the default
337       settings for files created in that directory are displayed.</para>
338     <section remap="h3">
339       <title>Displaying the Current Stripe Size</title>
340       <para>To see the current stripe size for a Lustre file or directory, use the <literal>lfs
341           getstripe</literal> command. For example, to view information for a directory, enter a
342         command similar to:</para>
343       <screen>[client]# lfs getstripe /mnt/lustre </screen>
344       <para>This command produces output similar to:</para>
345       <screen>/mnt/lustre 
346 (Default) stripe_count: 1 stripe_size: 1M stripe_offset: -1</screen>
347       <para>In this example, the default stripe count is <literal>1</literal> (data blocks are
348         striped over a single OST), the default stripe size is 1 MB, and the objects are created
349         over all available OSTs.</para>
350       <para>To view information for a file, enter a command similar to:</para>
351       <screen>$ lfs getstripe /mnt/lustre/foo
352 /mnt/lustre/foo
353 lmm_stripe_count:   1
354 lmm_stripe_size:    1048576
355 lmm_pattern:        1
356 lmm_layout_gen:     0
357 lmm_stripe_offset:  0
358   obdidx   objid    objid      group
359   2        835487   m0xcbf9f   0 </screen>
360       <para>In this example, the file is located on <literal>obdidx 2</literal>, which corresponds
361         to the OST <literal>lustre-OST0002</literal>. To see which node is serving that OST, run:
362         <screen>$ lctl get_param osc.lustre-OST0002-osc.ost_conn_uuid
363 osc.lustre-OST0002-osc.ost_conn_uuid=192.168.20.1@tcp</screen></para>
364     </section>
365     <section remap="h3">
366       <title>Inspecting the File Tree</title>
367       <para>To inspect an entire tree of files, use the <literal>lfs find</literal>  command:</para>
368       <screen>lfs find [--recursive | -r] <replaceable>file|directory</replaceable> ...</screen>
369     </section>
370         <section>
371       <title><indexterm>
372           <primary>striping</primary>
373           <secondary>remote directories</secondary>
374         </indexterm>Locating the MDT for a remote directory</title>
375       <para condition="l24">Lustre software release 2.4 can be configured with
376           multiple MDTs in the same file system. Each sub-directory can have a
377           different MDT. To identify on which MDT a given subdirectory is
378           located, pass the <literal>getstripe [--mdt-index|-M]</literal>
379           parameters to <literal>lfs</literal>. An example of this command is
380           provided in the section <xref linkend="dbdoclet.rmremotedir"/>.</para>
381     </section>
382   </section>
383   <section xml:id="pfl" condition='l2A'>
384     <title><indexterm>
385         <primary>striping</primary>
386         <secondary>PFL</secondary>
387     </indexterm>Progressive File Layout(PFL)</title>
388     <para>The Lustre Progressive File Layout (PFL) feature simplifies the use
389       of Lustre so that users can expect reasonable performance for a variety of
390       normal file IO patterns without the need to explicitly understand their IO
391       model or Lustre usage details in advance. In particular, users do not
392       necessarily need to know the size or concurrency of output files in
393       advance of their creation and explicitly specify an optimal layout for
394       each file in order to achieve good performance for both highly concurrent
395       shared-single-large-file IO or parallel IO to many smaller per-process
396       files. </para>
397     <para>The layout of a PFL file is stored on disk as <literal>composite
398       layout</literal>. A PFL file is essentially an array of
399       <literal>sub-layout components</literal>, with each sub-layout component
400       being a plain layout covering different and non-overlapped extents of
401       the file. For PFL files, the file layout is composed of a series of
402       components, therefore it's possible that there are some file extents are
403       not described by any components.</para>
404     <para>An example of how data blocks of PFL files are mapped to OST objects
405       of components is shown in the following PFL object mapping diagram:</para>
406     <figure  xml:id="managinglayout.fig.pfl">
407       <title>PFL object mapping diagram</title>
408       <mediaobject>
409         <imageobject>
410           <imagedata scalefit="1" width="100%"
411           fileref="figures/PFL_object_mapping_diagram.png" />
412         </imageobject>
413         <textobject>
414           <phrase>PFL object mapping diagram</phrase>
415         </textobject>
416       </mediaobject>
417     </figure>
418     <para>The PFL file in <xref linkend="managinglayout.fig.pfl"/> has 3
419       components and shows the mapping for the blocks of a 2055MB file.
420       The stripe size for the first two components is 1MB, while the stripe size
421       for the third component is 4MB. The stripe count is increasing for each
422       successive component. The first component only has two 1MB blocks and the
423       single object has a size of 2MB. The second component holds the next 254MB
424       of the file spread over 4 separate OST objects in RAID-0, each one will
425       have a size of 256MB / 4 objects = 64MB per object. Note the first two
426       objects <literal>obj 2,0</literal> and <literal>obj 2,1</literal>
427       have a 1MB hole at the start where the data is stored in the first
428       component. The final component holds the next 1800MB spread over 32 OST
429       objects. There is a 256MB / 32 = 8MB hole at the start each one for the
430       data stored in the first two components. Each object will be
431       2048MB / 32 objects = 64MB per object, except the
432       <literal>obj 3,0</literal> that holds an extra 4MB chunk and
433       <literal>obj 3,1</literal> that holds an extra 3MB chunk. If more data
434       was written to the file, only the objects in component 3 would increase
435       in size.</para>
436     <para>When a file range with defined but not instantiated component is
437       accessed, clients will send a Layout Intent RPC to the MDT, and the MDT
438       would instantiate the objects of the components covering that range.
439     </para>
440     <para>Next, some commands for user to operate PFL files are introduced and
441       some examples of possible composite layout are illustrated as well.
442       Lustre provides commands
443       <literal>lfs setstripe</literal> and <literal>lfs migrate</literal> for
444       users to operate PFL files. <literal>lfs setstripe</literal> commands
445       are used to create PFL files, add or delete components to or from an
446       existing composite file; <literal>lfs migrate</literal> commands are used
447       to re-layout the data in existing files using the new layout parameter by
448       copying the data from the existing OST(s) to the new OST(s). Also,
449       as introduced in the previous sections, <literal>lfs getstripe</literal>
450       commands can be used to list the striping/component information for a
451       given PFL file, and <literal>lfs find</literal> commands can be used to
452       search the directory tree rooted at the given directory or file name for
453       the files that match the given PFL component parameters.</para>
454     <note><para>Using PFL files requires both the client and server to
455       understand the PFL file layout, which isn't available for Lustre 2.9 and
456       earlier. And it will not prevent older clients from accessing non-PFL
457       files in the filesystem.</para></note>
458     <section remap="h3">
459       <title><literal>lfs setstripe</literal></title>
460       <para><literal>lfs setstripe</literal> commands are used to create PFL
461         files, add or delete components to or from an existing composite file.
462         (Suppose we have 8 OSTs in the following examples and stripe size is 1MB
463         by default.)</para>
464       <section remap="h4">
465         <title>Create a PFL file</title>
466         <para><emphasis role="bold">Command</emphasis></para>
467         <screen>lfs setstripe
468 [--component-end|-E end1] [STRIPE_OPTIONS]
469 [--component-end|-E end2] [STRIPE_OPTIONS] ... <replaceable>filename</replaceable></screen>
470         <para>The <literal>-E</literal> option is used to specify the end offset
471           (in bytes or using a suffix “kMGTP”, e.g. 256M) of each component, and
472           it also indicates the following <literal>STRIPE_OPTIONS</literal> are
473           for this component. Each component defines the stripe pattern of the
474           file in the range of [start, end). The first component must start from
475           offset 0 and all components must be adjacent with each other, no holes
476           are allowed, so each extent will start at the end of previous extent.
477           A <literal>-1</literal> end offset or <literal>eof</literal> indicates
478           this is the last component extending to the end of file.</para>
479         <para><emphasis role="bold">Example</emphasis></para>
480         <screen>$ lfs setstripe -E 4M -c 1 -E 64M -c 4 -E -1 -c -1 -i 4 \
481 /mnt/testfs/create_comp</screen>
482         <para>This command creates a file with composite layout illustrated in
483           the following figure. The first component has 1 stripe and covers
484           [0, 4M), the second component has 4 stripes and covers [4M, 64M), and
485           the last component stripes start at OST4, cross over all available
486           OSTs and covers [64M, EOF).</para>
487         <figure  xml:id="managinglayout.fig.pfl_create">
488           <title>Example: create a composite file</title>
489           <mediaobject>
490             <imageobject>
491               <imagedata scalefit="1" depth="2.75in" align="center"
492               fileref="figures/PFL_createfile.png" />
493             </imageobject>
494             <textobject>
495               <phrase>Example: create a composite file</phrase>
496             </textobject>
497           </mediaobject>
498         </figure>
499         <para>The composite layout can be output by the following command:</para>
500         <screen>$ lfs getstripe /mnt/testfs/create_comp
501 /mnt/testfs/create_comp
502   lcm_layout_gen:  3
503   lcm_entry_count: 3
504     lcme_id:             1
505     lcme_flags:          init
506     lcme_extent.e_start: 0
507     lcme_extent.e_end:   4194304
508       lmm_stripe_count:  1
509       lmm_stripe_size:   1048576
510       lmm_pattern:       1
511       lmm_layout_gen:    0
512       lmm_stripe_offset: 0
513       lmm_objects:
514       - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
515
516     lcme_id:             2
517     lcme_flags:          0
518     lcme_extent.e_start: 4194304
519     lcme_extent.e_end:   67108864
520       lmm_stripe_count:  4
521       lmm_stripe_size:   1048576
522       lmm_pattern:       1
523       lmm_layout_gen:    0
524       lmm_stripe_offset: -1
525     lcme_id:             3
526     lcme_flags:          0
527     lcme_extent.e_start: 67108864
528     lcme_extent.e_end:   EOF
529       lmm_stripe_count:  -1
530       lmm_stripe_size:   1048576
531       lmm_pattern:       1
532       lmm_layout_gen:    0
533       lmm_stripe_offset: 4</screen>
534         <note><para>Only the first component’s OST objects of the PFL file are
535           instantiated when the layout is being set. Other instantiation is
536           delayed to later write/truncate operations.</para></note>
537         <para>If we write 128M data to this PFL file, the second and third
538           components will be instantiated:</para>
539         <screen>$ dd if=/dev/zero of=/mnt/testfs/create_comp bs=1M count=128
540 $ lfs getstripe /mnt/testfs/create_comp
541 /mnt/testfs/create_comp
542   lcm_layout_gen:  5
543   lcm_entry_count: 3
544     lcme_id:             1
545     lcme_flags:          init
546     lcme_extent.e_start: 0
547     lcme_extent.e_end:   4194304
548       lmm_stripe_count:  1
549       lmm_stripe_size:   1048576
550       lmm_pattern:       1
551       lmm_layout_gen:    0
552       lmm_stripe_offset: 0
553       lmm_objects:
554       - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
555
556     lcme_id:             2
557     lcme_flags:          init
558     lcme_extent.e_start: 4194304
559     lcme_extent.e_end:   67108864
560       lmm_stripe_count:  4
561       lmm_stripe_size:   1048576
562       lmm_pattern:       1
563       lmm_layout_gen:    0
564       lmm_stripe_offset: 1
565       lmm_objects:
566       - 0: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
567       - 1: { l_ost_idx: 2, l_fid: [0x100020000:0x2:0x0] }
568       - 2: { l_ost_idx: 3, l_fid: [0x100030000:0x2:0x0] }
569       - 3: { l_ost_idx: 4, l_fid: [0x100040000:0x2:0x0] }
570
571     lcme_id:             3
572     lcme_flags:          init
573     lcme_extent.e_start: 67108864
574     lcme_extent.e_end:   EOF
575       lmm_stripe_count:  8
576       lmm_stripe_size:   1048576
577       lmm_pattern:       1
578       lmm_layout_gen:    0
579       lmm_stripe_offset: 4
580       lmm_objects:
581       - 0: { l_ost_idx: 4, l_fid: [0x100040000:0x3:0x0] }
582       - 1: { l_ost_idx: 5, l_fid: [0x100050000:0x2:0x0] }
583       - 2: { l_ost_idx: 6, l_fid: [0x100060000:0x2:0x0] }
584       - 3: { l_ost_idx: 7, l_fid: [0x100070000:0x2:0x0] }
585       - 4: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
586       - 5: { l_ost_idx: 1, l_fid: [0x100010000:0x3:0x0] }
587       - 6: { l_ost_idx: 2, l_fid: [0x100020000:0x3:0x0] }
588       - 7: { l_ost_idx: 3, l_fid: [0x100030000:0x3:0x0] }</screen>
589       </section>
590       <section remap="h4">
591         <title>Add component(s) to an existing composite file</title>
592         <para><emphasis role="bold">Command</emphasis></para>
593         <screen>lfs setstripe --component-add
594 [--component-end|-E end1] [STRIPE_OPTIONS]
595 [--component-end|-E end2] [STRIPE_OPTIONS] ... <replaceable>filename</replaceable></screen>
596         <para>The option <literal>--component-add</literal> is used to add
597           components to an existing composite file. The extent start of
598           the first component to be added is equal to the extent end of last
599           component in the existing file, and all components to be added must
600           be adjacent with each other.</para>
601         <note><para>If the last existing component is specified by
602           <literal>-E -1</literal> or <literal>-E eof</literal>, which covers
603           to the end of the file, it must be deleted before a new one is added.
604         </para></note>
605         <para><emphasis role="bold">Example</emphasis></para>
606         <screen>$ lfs setstripe -E 4M -c 1 -E 64M -c 4 /mnt/testfs/add_comp
607 $ lfs setstripe --component-add -E -1 -c 4 -o 6-7,0,5 \
608 /mnt/testfs/add_comp</screen>
609         <para>This command adds a new component which starts from the end of
610           the last existing component to the end of file. The layout of this
611           example is illustrated in
612           <xref linkend="managinglayout.fig.pfl_addcomp"/>. The last component
613           stripes across 4 OSTs in sequence OST6, OST7, OST0 and OST5, covers
614           [64M, EOF).</para>
615         <figure  xml:id="managinglayout.fig.pfl_addcomp">
616           <title>Example: add a component to an existing composite file</title>
617           <mediaobject>
618             <imageobject>
619               <imagedata scalefit="1" depth="2.75in" align="center"
620               fileref="figures/PFL_addcomp.png" />
621             </imageobject>
622             <textobject>
623               <phrase>Example: add a component to an existing composite file
624               </phrase>
625             </textobject>
626           </mediaobject>
627         </figure>
628         <para>The layout can be printed out by the following command:</para>
629         <screen>$ lfs getstripe /mnt/testfs/add_comp
630 /mnt/testfs/add_comp
631   lcm_layout_gen:  5
632   lcm_entry_count: 3
633     lcme_id:             1
634     lcme_flags:          init
635     lcme_extent.e_start: 0
636     lcme_extent.e_end:   4194304
637       lmm_stripe_count:  1
638       lmm_stripe_size:   1048576
639       lmm_pattern:       1
640       lmm_layout_gen:    0
641       lmm_stripe_offset: 0
642       lmm_objects:
643       - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
644
645     lcme_id:             2
646     lcme_flags:          init
647     lcme_extent.e_start: 4194304
648     lcme_extent.e_end:   67108864
649       lmm_stripe_count:  4
650       lmm_stripe_size:   1048576
651       lmm_pattern:       1
652       lmm_layout_gen:    0
653       lmm_stripe_offset: 1
654       lmm_objects:
655       - 0: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
656       - 1: { l_ost_idx: 2, l_fid: [0x100020000:0x2:0x0] }
657       - 2: { l_ost_idx: 3, l_fid: [0x100030000:0x2:0x0] }
658       - 3: { l_ost_idx: 4, l_fid: [0x100040000:0x2:0x0] }
659
660     lcme_id:             5
661     lcme_flags:          0
662     lcme_extent.e_start: 67108864
663     lcme_extent.e_end:   EOF
664       lmm_stripe_count:  4
665       lmm_stripe_size:   1048576
666       lmm_pattern:       1
667       lmm_layout_gen:    0
668       lmm_stripe_offset: -1</screen>
669         <para>The component ID "lcme_id" changes as layout generation
670           changes. It is not necessarily sequential and does not imply ordering
671           of individual components.</para>
672         <note><para>Similar to specifying a full-file composite layout at file
673           creation time, <literal>--component-add</literal> won't instantiate
674           OST objects, the instantiation is delayed to later write/truncate
675           operations. For example, after writing beyond the 64MB start of the
676           file's last component, the new component has had objects allocated:
677         </para></note>
678         <screen>$ lfs getstripe -I5 /mnt/testfs/add_comp
679 /mnt/testfs/add_comp
680   lcm_layout_gen:  6
681   lcm_entry_count: 3
682     lcme_id:             5
683     lcme_flags:          init
684     lcme_extent.e_start: 67108864
685     lcme_extent.e_end:   EOF
686       lmm_stripe_count:  4
687       lmm_stripe_size:   1048576
688       lmm_pattern:       1
689       lmm_layout_gen:    0
690       lmm_stripe_offset: 6
691       lmm_objects:
692       - 0: { l_ost_idx: 6, l_fid: [0x100060000:0x4:0x0] }
693       - 1: { l_ost_idx: 7, l_fid: [0x100070000:0x4:0x0] }
694       - 2: { l_ost_idx: 0, l_fid: [0x100000000:0x5:0x0] }
695       - 3: { l_ost_idx: 5, l_fid: [0x100050000:0x4:0x0] }</screen>
696       </section>
697       <section remap="h4">
698         <title>Delete component(s) from an existing file</title>
699         <para><emphasis role="bold">Command</emphasis></para>
700         <screen>lfs setstripe --component-del
701 [--component-id|-I comp_id | --component-flags comp_flags]
702 <replaceable>filename</replaceable></screen>
703         <para>The option <literal>--component-del</literal> is used to remove
704           the component(s) specified by component ID or flags from an existing
705           file. This operation will result in any data stored in the deleted
706           component will be lost.</para>
707         <para>The ID specified by <literal>-I</literal> option is the numerical
708           unique ID of the component, which can be obtained by command
709           <literal>lfs getstripe -I</literal> command, and the flag specified by
710           <literal>--component-flags</literal> option is a certain type of
711           components, which can be obtained by command
712           <literal>lfs getstripe --component-flags</literal>. For now, we only
713           have two flags <literal>init</literal> and <literal>^init</literal>
714           for instantiated and un-instantiated components respectively.</para>
715         <note><para>Deletion must start with the last component because hole is
716           not allowed.</para></note>
717         <para><emphasis role="bold">Example</emphasis></para>
718         <screen>$ lfs getstripe -I /mnt/testfs/del_comp
719 1
720 2
721 5
722 $ lfs setstripe --component-del -I 5 /mnt/testfs/del_comp</screen>
723         <para>This example deletes the component with ID 5 from file
724           <literal>/mnt/testfs/del_comp</literal>. If we still use the last
725           example, the final result is illustrated in
726           <xref linkend="managinglayout.fig.pfl_delcomp"/>.</para>
727         <figure  xml:id="managinglayout.fig.pfl_delcomp">
728           <title>Example: delete a component from an existing file</title>
729           <mediaobject>
730             <imageobject>
731               <imagedata scalefit="1" depth="2.75in" align="center"
732               fileref="figures/PFL_delcomp.png" />
733             </imageobject>
734             <textobject>
735               <phrase>Example: delete a component from an existing file</phrase>
736             </textobject>
737           </mediaobject>
738         </figure>
739         <para>If you try to delete a non-last component, you will see the
740           following error:</para>
741         <screen>$ lfs setstripe -component-del -I 2 /mnt/testfs/del_comp
742 Delete component 0x2 from /mnt/testfs/del_comp failed. Invalid argument
743 error: setstripe: delete component of file '/mnt/testfs/del_comp' failed: Invalid argument</screen>
744       </section>
745       <section remap="h4">
746         <title>Set default PFL layout to an existing directory</title>
747         <para>Similar to create a PFL file, you can set default PFL layout to
748           an existing directory. After that, all the files created will inherit
749           this layout by default.</para>
750         <para><emphasis role="bold">Command</emphasis></para>
751         <screen>lfs setstripe
752 [--component-end|-E end1] [STRIPE_OPTIONS]
753 [--component-end|-E end2] [STRIPE_OPTIONS] ... <replaceable>dirname</replaceable></screen>
754         <para><emphasis role="bold">Example</emphasis></para>
755         <screen>
756 $ mkdir /mnt/testfs/pfldir
757 $ lfs setstripe -E 256M -c 1 -E 16G -c 4 -E -1 -S 4M -c -1 /mnt/testfs/pfldir
758 </screen>
759         <para>When you run <literal>lfs getstripe</literal>, you will see:
760         </para>
761         <screen>
762 $ lfs getstripe /mnt/testfs/pfldir
763 /mnt/testfs/pfldir
764   lcm_layout_gen:  0
765   lcm_entry_count: 3
766     lcme_id:             N/A
767     lcme_flags:          0
768     lcme_extent.e_start: 0
769     lcme_extent.e_end:   268435456
770       stripe_count:  1       stripe_size:   1048576       stripe_offset: -1
771     lcme_id:             N/A
772     lcme_flags:          0
773     lcme_extent.e_start: 268435456
774     lcme_extent.e_end:   17179869184
775       stripe_count:  4       stripe_size:   1048576       stripe_offset: -1
776     lcme_id:             N/A
777     lcme_flags:          0
778     lcme_extent.e_start: 17179869184
779     lcme_extent.e_end:   EOF
780       stripe_count:  -1       stripe_size:   4194304       stripe_offset: -1
781 </screen>
782         <para>If you create a file under <literal>/mnt/testfs/pfldir</literal>,
783           the layout of that file will inherit the layout from its parent
784           directory:</para>
785         <screen>
786 $ touch /mnt/testfs/pfldir/pflfile
787 $ lfs getstripe /mnt/testfs/pfldir/pflfile
788 /mnt/testfs/pfldir/pflfile
789   lcm_layout_gen:  2
790   lcm_entry_count: 3
791     lcme_id:             1
792     lcme_flags:          init
793     lcme_extent.e_start: 0
794     lcme_extent.e_end:   268435456
795       lmm_stripe_count:  1
796       lmm_stripe_size:   1048576
797       lmm_pattern:       raid0
798       lmm_layout_gen:    0
799       lmm_stripe_offset: 1
800       lmm_objects:
801       - 0: { l_ost_idx: 1, l_fid: [0x100010000:0xa:0x0] }
802
803     lcme_id:             2
804     lcme_flags:          0
805     lcme_extent.e_start: 268435456
806     lcme_extent.e_end:   17179869184
807       lmm_stripe_count:  4
808       lmm_stripe_size:   1048576
809       lmm_pattern:       raid0
810       lmm_layout_gen:    0
811       lmm_stripe_offset: -1
812
813     lcme_id:             3
814     lcme_flags:          0
815     lcme_extent.e_start: 17179869184
816     lcme_extent.e_end:   EOF
817       lmm_stripe_count:  -1
818       lmm_stripe_size:   4194304
819       lmm_pattern:       raid0
820       lmm_layout_gen:    0
821       lmm_stripe_offset: -1
822 </screen>
823         <note><para>
824           <literal>lfs setstripe --component-add/del</literal> can't be run
825           on a directory, because default layout in directory is likea config,
826           which can be arbitrarily changed by <literal>lfs setstripe</literal>,
827           while layout in file may have data (OST objects) attached. If you want
828           to delete default layout in a directory, run
829           <literal>lfs setstripe -d <replaceable>dirname</replaceable></literal>
830           to return the directory to the filesystem-wide defaults, like:
831         <screen>
832 $ lfs setstripe -d /mnt/testfs/pfldir
833 $ lfs getstripe -d /mnt/testfs/pfldir
834 /mnt/testfs/pfldir
835 stripe_count:  1 stripe_size:   1048576 stripe_offset: -1
836 /mnt/testfs/pfldir/commonfile
837 lmm_stripe_count:  1
838 lmm_stripe_size:   1048576
839 lmm_pattern:       1
840 lmm_layout_gen:    0
841 lmm_stripe_offset: 0
842         obdidx           objid           objid           group
843              2               9            0x9                0
844 </screen>
845         </para></note>
846       </section>
847     </section>
848     <section remap="h3">
849       <title><literal>lfs migrate</literal></title>
850       <para><literal>lfs migrate</literal> commands are used to re-layout the
851         data in the existing files with the new layout parameter by copying the
852         data from the existing OST(s) to the new OST(s).</para>
853       <para><emphasis role="bold">Command</emphasis></para>
854       <screen>lfs migrate [--component-end|-E comp_end] [STRIPE_OPTIONS] ...
855 <replaceable>filename</replaceable></screen>
856       <para>The difference between <literal>migrate</literal> and
857         <literal>setstripe</literal> is that <literal>migrate</literal> is to
858         re-layout the data in the existing files, while
859         <literal>setstripe</literal> is to create new files with the specified
860         layout.</para>
861       <para><emphasis role="bold">Example</emphasis></para>
862       <para><emphasis role="bold">Case1. Migrate a normal one to a composite
863         layout</emphasis></para>
864       <screen>$ lfs setstripe -c 1 -S 128K /mnt/testfs/norm_to_2comp
865 $ dd if=/dev/urandom of=/mnt/testfs/norm_to_2comp bs=1M count=5
866 $ lfs getstripe /mnt/testfs/norm_to_2comp --yaml
867 /mnt/testfs/norm_to_comp
868 lmm_stripe_count:  1
869 lmm_stripe_size:   131072
870 lmm_pattern:       1
871 lmm_layout_gen:    0
872 lmm_stripe_offset: 7
873 lmm_objects:
874       - l_ost_idx: 7
875         l_fid:     0x100070000:0x2:0x0
876 $ lfs migrate -E 1M -S 512K -c 1 -E -1 -S 1M -c 2 \
877 /mnt/testfs/norm_to_2comp</screen>
878       <para>In this example, a 5MB size file with 1 stripe and 128K stripe size
879         is migrated to a composite layout file with 2 components, illustrated in
880         <xref linkend="managinglayout.fig.pfl_norm_to_comp"/>.</para>
881       <figure  xml:id="managinglayout.fig.pfl_norm_to_comp">
882         <title>Example: migrate normal to composite</title>
883         <mediaobject>
884           <imageobject>
885             <imagedata scalefit="1" depth="2.75in" align="center"
886             fileref="figures/PFL_norm_to_comp.png" />
887           </imageobject>
888           <textobject>
889             <phrase>Example: migrate normal to composite</phrase>
890           </textobject>
891         </mediaobject>
892       </figure>
893       <para>The stripe information after migration is like:</para>
894       <screen>$ lfs getstripe /mnt/testfs/norm_to_2comp
895 /mnt/testfs/norm_to_2comp
896   lcm_layout_gen:  4
897   lcm_entry_count: 2
898     lcme_id:             1
899     lcme_flags:          init
900     lcme_extent.e_start: 0
901     lcme_extent.e_end:   1048576
902       lmm_stripe_count:  1
903       lmm_stripe_size:   524288
904       lmm_pattern:       1
905       lmm_layout_gen:    0
906       lmm_stripe_offset: 0
907       lmm_objects:
908       - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
909
910     lcme_id:             2
911     lcme_flags:          init
912     lcme_extent.e_start: 1048576
913     lcme_extent.e_end:   EOF
914       lmm_stripe_count:  2
915       lmm_stripe_size:   1048576
916       lmm_pattern:       1
917       lmm_layout_gen:    0
918       lmm_stripe_offset: 2
919       lmm_objects:
920       - 0: { l_ost_idx: 2, l_fid: [0x100020000:0x2:0x0] }
921       - 1: { l_ost_idx: 3, l_fid: [0x100030000:0x2:0x0] }</screen>
922       <para><emphasis role="bold">Case2. Migrate a composite layout to another
923         composite layout</emphasis></para>
924       <screen>$ lfs setstripe -E 1M -S 512K -c 1 -E -1 -S 1M -c 2 \
925 /mnt/testfs/2comp_to_3comp
926 $ dd if=/dev/urandom of=/mnt/testfs/norm_to_2comp bs=1M count=5
927 $ lfs migrate -E 1M -S 1M -c 2 -E 4M -S 1M -c 2 -E -1 -S 3M -c 3 \
928 /mnt/testfs/2comp_to_3comp</screen>
929       <para>In this example, a composite layout file with 2 components is
930         migrated a composite layout file with 3 components. If we still use
931         the example in case1, the migration process is illustrated in
932         <xref linkend="managinglayout.fig.pfl_comp_to_comp"/>.</para>
933       <figure  xml:id="managinglayout.fig.pfl_comp_to_comp">
934         <title>Example: migrate composite to composite</title>
935         <mediaobject>
936           <imageobject>
937             <imagedata scalefit="1" depth="2.75in" align="center"
938             fileref="figures/PFL_comp_to_comp.png" />
939           </imageobject>
940           <textobject>
941             <phrase>Example: migrate composite to composite</phrase>
942           </textobject>
943         </mediaobject>
944       </figure>
945       <para>The stripe information is like:</para>
946       <screen>$ lfs getstripe /mnt/testfs/2comp_to_3comp
947 /mnt/testfs/2comp_to_3comp
948   lcm_layout_gen:  6
949   lcm_entry_count: 3
950     lcme_id:             1
951     lcme_flags:          init
952     lcme_extent.e_start: 0
953     lcme_extent.e_end:   1048576
954       lmm_stripe_count:  2
955       lmm_stripe_size:   1048576
956       lmm_pattern:       1
957       lmm_layout_gen:    0
958       lmm_stripe_offset: 4
959       lmm_objects:
960       - 0: { l_ost_idx: 4, l_fid: [0x100040000:0x2:0x0] }
961       - 1: { l_ost_idx: 5, l_fid: [0x100050000:0x2:0x0] }
962
963     lcme_id:             2
964     lcme_flags:          init
965     lcme_extent.e_start: 1048576
966     lcme_extent.e_end:   4194304
967       lmm_stripe_count:  2
968       lmm_stripe_size:   1048576
969       lmm_pattern:       1
970       lmm_layout_gen:    0
971       lmm_stripe_offset: 6
972       lmm_objects:
973       - 0: { l_ost_idx: 6, l_fid: [0x100060000:0x2:0x0] }
974       - 1: { l_ost_idx: 7, l_fid: [0x100070000:0x3:0x0] }
975
976     lcme_id:             3
977     lcme_flags:          init
978     lcme_extent.e_start: 4194304
979     lcme_extent.e_end:   EOF
980       lmm_stripe_count:  3
981       lmm_stripe_size:   3145728
982       lmm_pattern:       1
983       lmm_layout_gen:    0
984       lmm_stripe_offset: 0
985       lmm_objects:
986       - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
987       - 1: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
988       - 2: { l_ost_idx: 2, l_fid: [0x100020000:0x3:0x0] }</screen>
989       <para><emphasis role="bold">Case3. Migrate a composite layout to a
990         normal one</emphasis></para>
991       <screen>$ lfs migrate -E 1M -S 1M -c 2 -E 4M -S 1M -c 2 -E -1 -S 3M -c 3 \
992 /mnt/testfs/3comp_to_norm
993 $ dd if=/dev/urandom of=/mnt/testfs/norm_to_2comp bs=1M count=5
994 $ lfs migrate -c 2 -S 2M /mnt/testfs/3comp_to_normal</screen>
995       <para>In this example, a composite file with 3 components is migrated to
996         a normal file with 2 stripes and 2M stripe size. If we still use the
997         example in Case2, the migration process is illustrated in
998         <xref linkend="managinglayout.fig.pfl_comp_to_norm"/>.</para>
999       <figure  xml:id="managinglayout.fig.pfl_comp_to_norm">
1000         <title>Example: migrate composite to normal</title>
1001         <mediaobject>
1002           <imageobject>
1003             <imagedata scalefit="1" depth="2.75in" align="center"
1004             fileref="figures/PFL_comp_to_norm.png" />
1005           </imageobject>
1006           <textobject>
1007             <phrase>Example: migrate composite to normal</phrase>
1008           </textobject>
1009         </mediaobject>
1010       </figure>
1011       <para>The stripe information is like:</para>
1012       <screen>$ lfs getstripe /mnt/testfs/3comp_to_norm --yaml
1013 /mnt/testfs/3comp_to_norm
1014 lmm_stripe_count:  2
1015 lmm_stripe_size:   2097152
1016 lmm_pattern:       1
1017 lmm_layout_gen:    7
1018 lmm_stripe_offset: 4
1019 lmm_objects:
1020       - l_ost_idx: 4
1021         l_fid:     0x100040000:0x3:0x0
1022       - l_ost_idx: 5
1023         l_fid:     0x100050000:0x3:0x0</screen>
1024     </section>
1025     <section remap="h3">
1026       <title><literal>lfs getstripe</literal></title>
1027       <para><literal>lfs getstripe</literal> commands can be used to list the
1028         striping/component information for a given PFL file. Here, only those
1029         parameters new for PFL files are shown.</para>
1030       <para><emphasis role="bold">Command</emphasis></para>
1031       <screen>lfs getstripe
1032 [--component-id|-I [comp_id]]
1033 [--component-flags [comp_flags]]
1034 [--component-count]
1035 [--component-start [+-][N][kMGTPE]]
1036 [--component-end|-E [+-][N][kMGTPE]]
1037 <replaceable>dirname|filename</replaceable></screen>
1038       <para><emphasis role="bold">Example</emphasis></para>
1039       <para>Suppose we already have a composite file
1040         <literal>/mnt/testfs/3comp</literal>, created by the following
1041         command:</para>
1042       <screen>$ lfs setstripe -E 4M -c 1 -E 64M -c 4 -E -1 -c -1 -i 4 \
1043 /mnt/testfs/3comp</screen>
1044       <para>And write some data</para>
1045       <screen>$ dd if=/dev/zero of=/mnt/testfs/3comp bs=1M count=5</screen>
1046       <para><emphasis role="bold">Case1. List component ID and its related
1047         information</emphasis></para>
1048       <itemizedlist>
1049         <listitem>
1050           <para>List all the components ID</para>
1051           <screen>$ lfs getstripe -I /mnt/testfs/3comp
1052 1
1053 2
1054 3</screen>
1055         </listitem>
1056         <listitem>
1057           <para>List the detailed striping information of component ID=2</para>
1058           <screen>$ lfs getstripe -I2 /mnt/testfs/3comp
1059 /mnt/testfs/3comp
1060   lcm_layout_gen:  4
1061   lcm_entry_count: 3
1062     lcme_id:             2
1063     lcme_flags:          init
1064     lcme_extent.e_start: 4194304
1065     lcme_extent.e_end:   67108864
1066       lmm_stripe_count:  4
1067       lmm_stripe_size:   1048576
1068       lmm_pattern:       1
1069       lmm_layout_gen:    0
1070       lmm_stripe_offset: 5
1071       lmm_objects:
1072       - 0: { l_ost_idx: 5, l_fid: [0x100050000:0x2:0x0] }
1073       - 1: { l_ost_idx: 6, l_fid: [0x100060000:0x2:0x0] }
1074       - 2: { l_ost_idx: 7, l_fid: [0x100070000:0x2:0x0] }
1075       - 3: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }</screen>
1076         </listitem>
1077         <listitem>
1078           <para>List the stripe offset and stripe count of component ID=2</para>
1079           <screen>$ lfs getstripe -I2 -i -c /mnt/testfs/3comp
1080       lmm_stripe_count:  4
1081       lmm_stripe_offset: 5</screen>
1082         </listitem>
1083       </itemizedlist>
1084       <para><emphasis role="bold">Case2. List the component which contains the
1085         specified flag</emphasis></para>
1086       <itemizedlist>
1087         <listitem>
1088           <para>List the flag of each component</para>
1089           <screen>$ lfs getstripe -component-flag -I /mnt/testfs/3comp
1090     lcme_id:             1
1091     lcme_flags:          init
1092     lcme_id:             2
1093     lcme_flags:          init
1094     lcme_id:             3
1095     lcme_flags:          0</screen>
1096         </listitem>
1097         <listitem>
1098           <para>List component(s) who is not instantiated</para>
1099           <screen>$ lfs getstripe --component-flags=^init /mnt/testfs/3comp
1100 /mnt/testfs/3comp
1101   lcm_layout_gen:  4
1102   lcm_entry_count: 3
1103     lcme_id:             3
1104     lcme_flags:          0
1105     lcme_extent.e_start: 67108864
1106     lcme_extent.e_end:   EOF
1107       lmm_stripe_count:  -1
1108       lmm_stripe_size:   1048576
1109       lmm_pattern:       1
1110       lmm_layout_gen:    4
1111       lmm_stripe_offset: 4</screen>
1112         </listitem>
1113       </itemizedlist>
1114       <para><emphasis role="bold">Case3. List the total number of all the
1115         component(s)</emphasis></para>
1116       <itemizedlist>
1117         <listitem>
1118           <para>List the total number of all the components</para>
1119           <screen>$ lfs getstripe --component-count /mnt/testfs/3comp
1120 3</screen>
1121         </listitem>
1122       </itemizedlist>
1123       <para><emphasis role="bold">Case4. List the component with the specified
1124         extent start or end positions</emphasis></para>
1125       <itemizedlist>
1126         <listitem>
1127           <para>List the start position in bytes of each component</para>
1128           <screen>$ lfs getstripe --component-start /mnt/testfs/3comp
1129 0
1130 4194304
1131 67108864</screen>
1132         </listitem>
1133         <listitem>
1134           <para>List the start position in bytes of component ID=3</para>
1135           <screen>$ lfs getstripe --component-start -I3 /mnt/testfs/3comp
1136 67108864</screen>
1137         </listitem>
1138         <listitem>
1139           <para>List the component with start = 64M</para>
1140           <screen>$ lfs getstripe --component-start=64M /mnt/testfs/3comp
1141 /mnt/testfs/3comp
1142   lcm_layout_gen:  4
1143   lcm_entry_count: 3
1144     lcme_id:             3
1145     lcme_flags:          0
1146     lcme_extent.e_start: 67108864
1147     lcme_extent.e_end:   EOF
1148       lmm_stripe_count:  -1
1149       lmm_stripe_size:   1048576
1150       lmm_pattern:       1
1151       lmm_layout_gen:    4
1152       lmm_stripe_offset: 4</screen>
1153         </listitem>
1154         <listitem>
1155           <para>List the component(s) with start &gt; 5M</para>
1156           <screen>$ lfs getstripe --component-start=+5M /mnt/testfs/3comp
1157 /mnt/testfs/3comp
1158   lcm_layout_gen:  4
1159   lcm_entry_count: 3
1160     lcme_id:             3
1161     lcme_flags:          0
1162     lcme_extent.e_start: 67108864
1163     lcme_extent.e_end:   EOF
1164       lmm_stripe_count:  -1
1165       lmm_stripe_size:   1048576
1166       lmm_pattern:       1
1167       lmm_layout_gen:    4
1168       lmm_stripe_offset: 4</screen>
1169         </listitem>
1170         <listitem>
1171           <para>List the component(s) with start &lt; 5M</para>
1172           <screen>$ lfs getstripe --component-start=-5M /mnt/testfs/3comp
1173 /mnt/testfs/3comp
1174   lcm_layout_gen:  4
1175   lcm_entry_count: 3
1176     lcme_id:             1
1177     lcme_flags:          init
1178     lcme_extent.e_start: 0
1179     lcme_extent.e_end:   4194304
1180       lmm_stripe_count:  1
1181       lmm_stripe_size:   1048576
1182       lmm_pattern:       1
1183       lmm_layout_gen:    0
1184       lmm_stripe_offset: 4
1185       lmm_objects:
1186       - 0: { l_ost_idx: 4, l_fid: [0x100040000:0x2:0x0] }
1187
1188     lcme_id:             2
1189     lcme_flags:          init
1190     lcme_extent.e_start: 4194304
1191     lcme_extent.e_end:   67108864
1192       lmm_stripe_count:  4
1193       lmm_stripe_size:   1048576
1194       lmm_pattern:       1
1195       lmm_layout_gen:    0
1196       lmm_stripe_offset: 5
1197       lmm_objects:
1198       - 0: { l_ost_idx: 5, l_fid: [0x100050000:0x2:0x0] }
1199       - 1: { l_ost_idx: 6, l_fid: [0x100060000:0x2:0x0] }
1200       - 2: { l_ost_idx: 7, l_fid: [0x100070000:0x2:0x0] }
1201       - 3: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }</screen>
1202         </listitem>
1203         <listitem>
1204           <para>List the component(s) with start &gt; 3M and end &lt; 70M</para>
1205           <screen>$ lfs getstripe --component-start=+3M --component-end=-70M \
1206 /mnt/testfs/3comp
1207 /mnt/testfs/3comp
1208   lcm_layout_gen:  4
1209   lcm_entry_count: 3
1210     lcme_id:             2
1211     lcme_flags:          init
1212     lcme_extent.e_start: 4194304
1213     lcme_extent.e_end:   67108864
1214       lmm_stripe_count:  4
1215       lmm_stripe_size:   1048576
1216       lmm_pattern:       1
1217       lmm_layout_gen:    0
1218       lmm_stripe_offset: 5
1219       lmm_objects:
1220       - 0: { l_ost_idx: 5, l_fid: [0x100050000:0x2:0x0] }
1221       - 1: { l_ost_idx: 6, l_fid: [0x100060000:0x2:0x0] }
1222       - 2: { l_ost_idx: 7, l_fid: [0x100070000:0x2:0x0] }
1223       - 3: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }</screen>
1224         </listitem>
1225       </itemizedlist>
1226     </section>
1227     <section remap="h3">
1228       <title><literal>lfs find</literal></title>
1229       <para><literal>lfs find</literal> commands can be used to search the
1230         directory tree rooted at the given directory or file name for the files
1231         that match the given PFL component parameters. Here, only those
1232         parameters new for PFL files are shown. Their usages are similar to
1233         <literal>lfs getstripe</literal> commands.</para>
1234       <para><emphasis role="bold">Command</emphasis></para>
1235       <screen>lfs find <replaceable>directory|filename</replaceable>
1236 [[!] --component-count [+-=]<replaceable>comp_cnt</replaceable>]
1237 [[!] --component-start [+-=]<replaceable>N</replaceable>[kMGTPE]]
1238 [[!] --component-end|-E [+-=]<replaceable>N</replaceable>[kMGTPE]]
1239 [[!] --component-flags=<replaceable>comp_flags</replaceable>]</screen>
1240       <note><para>If you use <literal>--component-xxx</literal> options, only
1241         the composite files will be searched; but if you use
1242         <literal>! --component-xxx</literal> options, all the files will be
1243         searched.</para></note>
1244       <para><emphasis role="bold">Example</emphasis></para>
1245       <para>We use the following directory and composite files to show how
1246         <literal>lfs find</literal> works.</para>
1247         <screen>$ mkdir /mnt/testfs/testdir
1248 $ lfs setstripe -E 1M -E 10M -E eof /mnt/testfs/testdir/3comp
1249 $ lfs setstripe -E 4M -E 20M -E 30M -E eof /mnt/testfs/testdir/4comp
1250 $ mkdir -p /mnt/testfs/testdir/dir_3comp
1251 $ lfs setstripe -E 6M -E 30M -E eof /mnt/testfs/testdir/dir_3comp
1252 $ lfs setstripe -E 8M -E eof /mnt/testfs/testdir/dir_3comp/2comp
1253 $ lfs setstripe -c 1 /mnt/testfs/testdir/dir_3comp/commnfile</screen>
1254       <para><emphasis role="bold">Case1. Find the files that match the specified
1255         component count condition</emphasis></para>
1256       <para>Find the files under directory /mnt/testfs/testdir whose number of
1257         components is not equal to 3.</para>
1258       <screen>$ lfs find /mnt/testfs/testdir ! --component-count=3
1259 /mnt/testfs/testdir
1260 /mnt/testfs/testdir/4comp
1261 /mnt/testfs/testdir/dir_3comp/2comp
1262 /mnt/testfs/testdir/dir_3comp/commonfile</screen>
1263       <para><emphasis role="bold">Case2. Find the files/dirs that match the
1264         specified component start/end condition</emphasis></para>
1265       <para>Find the file(s) under directory /mnt/testfs/testdir with component
1266         start = 4M and end &lt; 70M</para>
1267       <screen>$ lfs find /mnt/testfs/testdir --component-start=4M -E -30M
1268 /mnt/testfs/testdir/4comp</screen>
1269       <para><emphasis role="bold">Case3. Find the files/dirs that match the
1270         specified component flag condition</emphasis></para>
1271       <para>Find the file(s) under directory /mnt/testfs/testdir whose component
1272         flags contain <literal>init</literal></para>
1273       <screen>$ lfs find /mnt/testfs/testdir --component-flag=init
1274 /mnt/testfs/testdir/3comp
1275 /mnt/testfs/testdir/4comp
1276 /mnt/testfs/testdir/dir_3comp/2comp</screen>
1277       <note><para>Since <literal>lfs find</literal> uses
1278         &quot;<literal>!</literal>&quot; to do negative search, we don’t support
1279         flag <literal>^init</literal> here.</para></note>
1280     </section>
1281   </section>
1282   <section xml:id="dbdoclet.50438209_10424">
1283     <title><indexterm>
1284         <primary>space</primary>
1285         <secondary>free space</secondary>
1286       </indexterm><indexterm>
1287         <primary>striping</primary>
1288         <secondary>round-robin algorithm</secondary>
1289       </indexterm><indexterm>
1290         <primary>striping</primary>
1291         <secondary>weighted algorithm</secondary>
1292       </indexterm><indexterm>
1293         <primary>round-robin algorithm</primary>
1294       </indexterm><indexterm>
1295         <primary>weighted algorithm</primary>
1296       </indexterm>Managing Free Space</title>
1297     <para>To optimize file system performance, the MDT assigns file stripes to OSTs based on two
1298       allocation algorithms. The <emphasis role="italic">round-robin</emphasis> allocator gives
1299       preference to location (spreading out stripes across OSSs to increase network bandwidth
1300       utilization) and the weighted allocator gives preference to available space (balancing loads
1301       across OSTs). Threshold and weighting factors for these two algorithms can be adjusted by the
1302       user. The MDT reserves 0.1 percent of total OST space and 32 inodes for each OST. The MDT
1303       stops object allocation for the OST if available space is less than reserved or the OST has
1304       fewer than 32 free inodes. The MDT starts object allocation when available space is twice
1305       as big as the reserved space and the OST has more than 64 free inodes. Note, clients
1306       could append existing files no matter what object allocation state is.</para>
1307     <para condition="l29"> The reserved space for each OST can be adjusted by the user. Use the
1308       <literal>lctl set_param</literal> command, for example the next command reserve 1GB space
1309       for all OSTs.
1310       <screen>lctl set_param -P osp.*.reserved_mb_low=1024</screen></para>
1311     <para>This section describes how to check available free space on disks and how free space is
1312       allocated. It then describes how to set the threshold and weighting factors for the allocation
1313       algorithms.</para>
1314     <section xml:id="dbdoclet.checking_free_space">
1315       <title>Checking File System Free Space</title>
1316       <para>Free space is an important consideration in assigning file stripes. The <literal>lfs
1317           df</literal> command can be used to show available disk space on the mounted Lustre file
1318         system and space consumption per OST. If multiple Lustre file systems are mounted, a path
1319         may be specified, but is not required. Options to the <literal>lfs df</literal> command are
1320         shown below.</para>
1321       <informaltable frame="all">
1322         <tgroup cols="2">
1323           <colspec colname="c1" colwidth="50*"/>
1324           <colspec colname="c2" colwidth="50*"/>
1325           <thead>
1326             <row>
1327               <entry>
1328                 <para><emphasis role="bold">Option</emphasis></para>
1329               </entry>
1330               <entry>
1331                 <para><emphasis role="bold">Description</emphasis></para>
1332               </entry>
1333             </row>
1334           </thead>
1335           <tbody>
1336             <row>
1337               <entry>
1338                 <para> <literal>-h</literal></para>
1339               </entry>
1340               <entry>
1341                 <para> Displays sizes in human readable format (for example: 1K, 234M, 5G).</para>
1342               </entry>
1343             </row>
1344             <row>
1345               <entry>
1346                 <para> <literal role="bold">-i, --inodes</literal></para>
1347               </entry>
1348               <entry>
1349                 <para> Lists inodes instead of block usage.</para>
1350               </entry>
1351             </row>
1352           </tbody>
1353         </tgroup>
1354       </informaltable>
1355       <note>
1356         <para>The <literal>df -i</literal> and <literal>lfs df -i</literal> commands show the
1357             <emphasis role="italic">minimum</emphasis> number of inodes that can be created in the
1358           file system at the current time. If the total number of objects available across all of
1359           the OSTs is smaller than those available on the MDT(s), taking into account the default
1360           file striping, then <literal>df -i</literal> will also report a smaller number of inodes
1361           than could be created. Running <literal>lfs df -i</literal> will report the actual number
1362           of inodes that are free on each target.</para>
1363         <para>For ZFS file systems, the number of inodes that can be created is dynamic and depends
1364           on the free space in the file system. The Free and Total inode counts reported for a ZFS
1365           file system are only an estimate based on the current usage for each target. The Used
1366           inode count is the actual number of inodes used by the file system.</para>
1367       </note>
1368       <para><emphasis role="bold">Examples</emphasis></para>
1369       <screen>[client1] $ lfs df
1370 UUID                1K-blockS  Used      Available Use% Mounted on
1371 mds-lustre-0_UUID   9174328    1020024   8154304   11%  /mnt/lustre[MDT:0]
1372 ost-lustre-0_UUID   94181368   56330708  37850660  59%  /mnt/lustre[OST:0]
1373 ost-lustre-1_UUID   94181368   56385748  37795620  59%  /mnt/lustre[OST:1]
1374 ost-lustre-2_UUID   94181368   54352012  39829356  57%  /mnt/lustre[OST:2]
1375 filesystem summary: 282544104  167068468 39829356  57%  /mnt/lustre
1376  
1377 [client1] $ lfs df -h
1378 UUID                bytes    Used    Available   Use%  Mounted on
1379 mds-lustre-0_UUID   8.7G     996.1M  7.8G        11%   /mnt/lustre[MDT:0]
1380 ost-lustre-0_UUID   89.8G    53.7G   36.1G       59%   /mnt/lustre[OST:0]
1381 ost-lustre-1_UUID   89.8G    53.8G   36.0G       59%   /mnt/lustre[OST:1]
1382 ost-lustre-2_UUID   89.8G    51.8G   38.0G       57%   /mnt/lustre[OST:2]
1383 filesystem summary: 269.5G   159.3G  110.1G      59%   /mnt/lustre
1384  
1385 [client1] $ lfs df -i 
1386 UUID                Inodes  IUsed IFree   IUse% Mounted on
1387 mds-lustre-0_UUID   2211572 41924 2169648 1%    /mnt/lustre[MDT:0]
1388 ost-lustre-0_UUID   737280  12183 725097  1%    /mnt/lustre[OST:0]
1389 ost-lustre-1_UUID   737280  12232 725048  1%    /mnt/lustre[OST:1]
1390 ost-lustre-2_UUID   737280  12214 725066  1%    /mnt/lustre[OST:2]
1391 filesystem summary: 2211572 41924 2169648 1%    /mnt/lustre[OST:2]</screen>
1392     </section>
1393     <section remap="h3">
1394         <title><indexterm>
1395           <primary>striping</primary>
1396           <secondary>allocations</secondary>
1397         </indexterm> Stripe Allocation Methods</title>
1398       <para>Two stripe allocation methods are provided:</para>
1399       <itemizedlist>
1400         <listitem>
1401           <para><emphasis role="bold">Round-robin allocator</emphasis> - When the OSTs have
1402             approximately the same amount of free space, the round-robin allocator alternates
1403             stripes between OSTs on different OSSs, so the OST used for stripe 0 of each file is
1404             evenly distributed among OSTs, regardless of the stripe count. In a simple example with
1405             eight OSTs numbered 0-7, objects would be allocated like this:</para>
1406           <para>
1407             <screen>File 1: OST1, OST2, OST3, OST4
1408 File 2: OST5, OST6, OST7
1409 File 3: OST0, OST1, OST2, OST3, OST4, OST5
1410 File 4: OST6, OST7, OST0</screen>
1411           </para>
1412           <para>Here are several more sample round-robin stripe orders (each letter represents a
1413             different OST on a single OSS):</para>
1414           <informaltable frame="none">
1415             <tgroup cols="2">
1416               <colspec colname="c1" colwidth="50*"/>
1417               <colspec colname="c2" colwidth="50*"/>
1418               <tbody>
1419                 <row>
1420                   <entry>
1421                     <para> 3: AAA</para>
1422                   </entry>
1423                   <entry>
1424                     <para> One 3-OST OSS</para>
1425                   </entry>
1426                 </row>
1427                 <row>
1428                   <entry>
1429                     <para> 3x3: ABABAB</para>
1430                   </entry>
1431                   <entry>
1432                     <para> Two 3-OST OSSs</para>
1433                   </entry>
1434                 </row>
1435                 <row>
1436                   <entry>
1437                     <para> 3x4: BBABABA</para>
1438                   </entry>
1439                   <entry>
1440                     <para> One 3-OST OSS (A) and one 4-OST OSS (B)</para>
1441                   </entry>
1442                 </row>
1443                 <row>
1444                   <entry>
1445                     <para> 3x5: BBABBABA</para>
1446                   </entry>
1447                   <entry>
1448                     <para> One 3-OST OSS (A) and one 5-OST OSS (B)</para>
1449                   </entry>
1450                 </row>
1451                 <row>
1452                   <entry>
1453                     <para> 3x3x3: ABCABCABC</para>
1454                   </entry>
1455                   <entry>
1456                     <para> Three 3-OST OSSs</para>
1457                   </entry>
1458                 </row>
1459               </tbody>
1460             </tgroup>
1461           </informaltable>
1462         </listitem>
1463         <listitem>
1464           <para><emphasis role="bold">Weighted allocator</emphasis> - When the free space difference
1465             between the OSTs becomes significant, the weighting algorithm is used to influence OST
1466             ordering based on size (amount of free space available on each OST) and location
1467             (stripes evenly distributed across OSTs). The weighted allocator fills the emptier OSTs
1468             faster, but uses a weighted random algorithm, so the OST with the most free space is not
1469             necessarily chosen each time.</para>
1470         </listitem>
1471       </itemizedlist>
1472       <para>The allocation method is determined by the amount of free-space imbalance on the OSTs.
1473         When free space is relatively balanced across OSTs, the faster round-robin allocator is
1474         used, which maximizes network balancing. The weighted allocator is used when any two OSTs
1475         are out of balance by more than the specified threshold (17% by default). The threshold
1476         between the two allocation methods is defined in the file
1477             <literal>/proc/fs/<replaceable>fsname</replaceable>/lov/<replaceable>fsname</replaceable>-mdtlov/qos_threshold_rr</literal>. </para>
1478       <para>To set the <literal>qos_threshold_r</literal> to <literal>25</literal>,  enter this
1479         command on the
1480         MGS:<screen>lctl set_param lov.<replaceable>fsname</replaceable>-mdtlov.qos_threshold_rr=25</screen></para>
1481     </section>
1482     <section remap="h3">
1483       <title><indexterm>
1484           <primary>space</primary>
1485           <secondary>location weighting</secondary>
1486         </indexterm>Adjusting the Weighting Between Free Space and Location</title>
1487       <para>The weighting priority used by the weighted allocator is set in the file
1488             <literal>/proc/fs/<replaceable>fsname</replaceable>/lov/<replaceable>fsname</replaceable>-mdtlov/qos_prio_free</literal>.
1489         Increasing the value of <literal>qos_prio_free</literal> puts more weighting on the amount
1490         of free space available on each OST and less on how stripes are distributed across OSTs. The
1491         default value is <literal>91</literal> (percent). When the free space priority is set to
1492           <literal>100</literal> (percent), weighting is based entirely on free space and location
1493         is no longer used by the striping algorithm. </para>
1494       <para>To change the allocator weighting to <literal>100</literal>, enter this command on the
1495         MGS:</para>
1496       <screen>lctl conf_param <replaceable>fsname</replaceable>-MDT0000.lov.qos_prio_free=100</screen>
1497       <para> .</para>
1498       <note>
1499         <para>When <literal>qos_prio_free</literal> is set to <literal>100</literal>, a weighted
1500           random algorithm is still used to assign stripes, so, for example, if OST2 has twice as
1501           much free space as OST1, OST2 is twice as likely to be used, but it is not guaranteed to
1502           be used.</para>
1503       </note>
1504     </section>
1505   </section>
1506   <section xml:id="wide_striping">
1507     <title><indexterm>
1508         <primary>striping</primary>
1509         <secondary>wide striping</secondary>
1510       </indexterm><indexterm>
1511         <primary>wide striping</primary>
1512       </indexterm>Lustre Striping Internals</title>
1513     <para>Individual files can only be striped over a finite number of OSTs,
1514     based on the maximum size of the attributes that can be stored on the MDT.
1515     If the MDT is ldiskfs-based without the <literal>ea_inode</literal>
1516     feature, a file can be striped across at most 160 OSTs.  With ZFS-based
1517     MDTs, or if the <literal>ea_inode</literal> feature is enabled for an
1518     ldiskfs-based MDT, a file can be striped across up to 2000 OSTs.
1519     </para>
1520     <para>Lustre inodes use an extended attribute to record on which OST each
1521     object is located, and the identifier each object on that OST. The size of
1522     the extended attribute is a function of the number of stripes.</para>
1523     <para>If using an ldiskfs-based MDT, the maximum number of OSTs over which
1524     files can be striped can been raised to 2000 by enabling the
1525     <literal>ea_inode</literal> feature on the MDT:
1526     <screen>tune2fs -O ea_inode /dev/<replaceable>mdtdev</replaceable></screen>
1527     </para>
1528     <note><para>The maximum stripe count for a single file does not limit the 
1529     maximum number of OSTs that are in the filesystem as a whole, only the
1530     maximum possible size and maximum aggregate bandwidth for the file.
1531     </para></note>
1532   </section>
1533 </chapter>