<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:05:12 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LU-248] port bug24194 to master (Still seeing inconsistencies in OST allocation)</title>
                <link>https://jira.whamcloud.com/browse/LU-248</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;port the patch in 1.8.6 to master(2.1.0)&lt;/p&gt;</description>
                <environment></environment>
        <key id="10667">LU-248</key>
            <summary>port bug24194 to master (Still seeing inconsistencies in OST allocation)</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="hongchao.zhang">Hongchao Zhang</assignee>
                                    <reporter username="hongchao.zhang">Hongchao Zhang</reporter>
                        <labels>
                    </labels>
                <created>Thu, 28 Apr 2011 23:49:48 +0000</created>
                <updated>Wed, 1 Jun 2011 01:53:48 +0000</updated>
                            <resolved>Wed, 1 Jun 2011 01:53:48 +0000</resolved>
                                    <version>Lustre 1.8.6</version>
                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                            <comments>
                            <comment id="14087" author="pjones" created="Tue, 10 May 2011 05:20:29 +0000"  >&lt;p&gt;Hongchao it would be a good idea to copy the main details of the issue from the bz ticket in case bz is unavailable when you want to work on this&lt;/p&gt;</comment>
                            <comment id="14142" author="hongchao.zhang" created="Tue, 10 May 2011 23:11:36 +0000"  >&lt;p&gt;after the qos_threshold_rr was set to 100%,  the allocation of OSTs is not consistent in a consistent round-robin allocation.&lt;/p&gt;

&lt;p&gt;Each IOR test creates 48 to 240 files (multiples of 12) in a directory called multdir with:&lt;/p&gt;

&lt;p&gt;lfs setstripe multdir -s 1m -c 1&lt;/p&gt;

&lt;p&gt;After creating the files, we look at the output of &apos;lfs getstripe multdir&apos; and add up the number of files assigned to each OST.&lt;br/&gt;
Most of the time the number of objects per OST is uniform, but about 1 in 10 times it is not.  For example:&lt;/p&gt;

&lt;p&gt;++++ Results are listed by OST&lt;br/&gt;
++   OST   OSS   Objects assigned&lt;br/&gt;
       0     0         16&lt;br/&gt;
       1     3         16&lt;br/&gt;
       2     0         16&lt;br/&gt;
       3     3         15   &amp;lt;---&lt;br/&gt;
       4     0         16&lt;br/&gt;
       5     3         16&lt;br/&gt;
       6     0         16&lt;br/&gt;
       7     3         16&lt;br/&gt;
       8     0         16&lt;br/&gt;
       9     3         17  &amp;lt;---&lt;br/&gt;
      10     0         16&lt;br/&gt;
      11     3         16&lt;br/&gt;
++ Total number of OST&apos;s assigned is       12&lt;br/&gt;
++ Total number of objects assigned is    192&lt;/p&gt;

&lt;p&gt;the cause of the above problem is that there are other creating operations during the IOR test, and the OST objects are allocated&lt;br/&gt;
in MDS-LOV, which will be affected by all clients&apos; creation. if there is other creation before this test, the re-seed mechanism will cause &lt;br/&gt;
inconsistent OST allocation, e.g.&lt;/p&gt;

&lt;p&gt;if OST count is 12, lqr_start_count will be (1000/12 + 4)*12 = 1044, &lt;br/&gt;
set lqr_start_idx=2, and one file is created before the test, then lqr_start_idx increase to 3&lt;/p&gt;

&lt;p&gt;let&apos;s do the test, creating 1044 files (87 objects in each OST), then when creating the 1044th&lt;br/&gt;
file, the re-seed will be triggered and lqr_start_idx will be reset to another random value(say, 5)&lt;br/&gt;
the final OST objects allocation will be,&lt;br/&gt;
OST0   87&lt;br/&gt;
OST1   87&lt;br/&gt;
OST2   86  &amp;lt;-- the re-seed point&lt;br/&gt;
OST3   87&lt;br/&gt;
OST4   87&lt;br/&gt;
OST5   88  &amp;lt;-- the new lqr_start_idx&lt;br/&gt;
OST6   87&lt;br/&gt;
OST7   87&lt;br/&gt;
OST8   87&lt;br/&gt;
OST9   87&lt;br/&gt;
OST10  87&lt;br/&gt;
OST11  87&lt;/p&gt;

&lt;p&gt;btw, the OST allocation is still consistent in the system view.&lt;/p&gt;

&lt;p&gt;the patch will increase the LOV reseed window to mitigate the issue&lt;/p&gt;</comment>
                            <comment id="15258" author="hudson" created="Tue, 31 May 2011 09:28:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15262" author="hudson" created="Tue, 31 May 2011 09:29:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15266" author="hudson" created="Tue, 31 May 2011 09:29:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15270" author="hudson" created="Tue, 31 May 2011 09:30:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15274" author="hudson" created="Tue, 31 May 2011 09:31:58 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15278" author="hudson" created="Tue, 31 May 2011 09:32:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15282" author="hudson" created="Tue, 31 May 2011 09:34:12 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15286" author="hudson" created="Tue, 31 May 2011 09:44:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15290" author="hudson" created="Tue, 31 May 2011 09:48:11 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15294" author="hudson" created="Tue, 31 May 2011 09:50:51 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=ofa/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,ofa #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15298" author="hudson" created="Tue, 31 May 2011 09:51:46 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15303" author="hudson" created="Tue, 31 May 2011 09:53:00 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15307" author="hudson" created="Tue, 31 May 2011 09:55:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15311" author="hudson" created="Tue, 31 May 2011 09:58:05 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15315" author="hudson" created="Tue, 31 May 2011 10:14:54 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/143/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #143&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-248&quot; title=&quot;port bug24194 to master (Still seeing inconsistencies in OST allocation)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-248&quot;&gt;&lt;del&gt;LU-248&lt;/del&gt;&lt;/a&gt; increase LOV reseed to mitigate OST allocation inconsitence&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4f50bbfa20b8cfdf13c2647cfae057285df9e9e8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/lov/lov_qos.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15346" author="hongchao.zhang" created="Wed, 1 Jun 2011 01:53:48 +0000"  >&lt;p&gt;patch has been pushed into master, close the issue, please reopen it if needed&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                    <customfield id="customfield_10020" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Bugzilla ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>24194.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv953:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5015</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10060" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Severity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10022"><![CDATA[3]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>