<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:48:00 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-11912] reduce number of OST objects created per MDS Sequence</title>
                <link>https://jira.whamcloud.com/browse/LU-11912</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;One issue with very large OSTs (e.g. &amp;gt; 256TiB or so) is that there can be too many objects in each OST object subdirectory.  With e.g. a 384TiB OST and 1MiB objects there would need to be 384M objects on the OST, 12.6M objects in each of the 32 OST object subdirectories, which exceeds the standard ldiskfs limit 10M entries per directory. Although this limit of 320M objects per OST increases proportionately with each DNE MDT, not all filesystems have multiple MDTs.  While the &lt;tt&gt;large_dir&lt;/tt&gt; support allows this to &quot;work&quot; (i.e. the object directories can become arbitrarily large), the performance will be poor because each new object create or unlink is likely hashed to a different directory leaf block, and object create performance degrades to a random 4KB IOPS workload.&lt;/p&gt;

&lt;p&gt;There are performance inflections as each level of htree directory is added, at approximately 100k, 1M, and 10M entries (about 3MB, 30MB, 300MB of directory blocks respectively), so it makes sense to stick below the 10M entries per directory if possible.  This is balanced by some aggregation of IO as the leaf blocks are shared for some time, so we don&apos;t necessarily want to continually roll over to new directories.&lt;/p&gt;

&lt;p&gt;For such a large OST, it would be better to reduce the number of objects created in each object directory, since the on-disk layout is transparent to the clients and MDS.  One easy way to achieve this is to change the MDS object allocation code to reduce &lt;tt&gt;LUSTRE_DATA_SEQ_MAX_WIDTH&lt;/tt&gt; from the current maximum 4B objects per SEQ, to something like 32M objects/SEQ (up to 1M objects per directory if none of them were ever deleted).&#160; After every e.g. 32M objects created on that OST it would roll over to a new SEQ with its own &lt;tt&gt;d{0..31}/&lt;/tt&gt; object subdirectories, which would be empty and provide the best create/unlink performance.&#160; This has the benefit of keeping the object directories smaller, and also aging out old objects from the working set rather than having random insertions in a large number of directory blocks.&lt;/p&gt;

&lt;p&gt;To optimize disk space usage, it would also need &quot;lazy&quot; online directory shrinking (e.g. release directory leaf blocks at the end of the directory if they are unused) so that as objects are deleted from the old directories they will use less space.&#160; There is already a preliminary patch for this &quot;&lt;a href=&quot;https://lists.openwall.net/linux-ext4/2019/01/23/18&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ext4: shrink directory when last block is empty&lt;/a&gt;&quot; but it needs a bit more work to be ready for production.  As a workaround, adding &quot;&lt;tt&gt;e2fsck -fD&lt;/tt&gt;&quot; to e2fsck runs would clean up the old object directory &lt;b&gt;blocks&lt;/b&gt; when they are empty.  We&apos;d also want to remove the empty object directories themselves when they are no longer used, but with directory shrinking that would only be about 100 blocks/SEQ ~= 400KB/SEQ, so not totally critical.&lt;/p&gt;</description>
                <environment></environment>
        <key id="54735">LU-11912</key>
            <summary>reduce number of OST objects created per MDS Sequence</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</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="dongyang">Dongyang Li</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                            <label>ldiskfs</label>
                            <label>performance</label>
                    </labels>
                <created>Thu, 31 Jan 2019 23:39:50 +0000</created>
                <updated>Fri, 3 Nov 2023 04:03:27 +0000</updated>
                            <resolved>Wed, 29 Mar 2023 03:15:48 +0000</resolved>
                                    <version>Lustre 2.12.0</version>
                    <version>Lustre 2.10.6</version>
                                    <fixVersion>Lustre 2.16.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>15</watches>
                                                                            <comments>
                            <comment id="267207" author="adilger" created="Wed, 8 Apr 2020 22:55:39 +0000"  >&lt;p&gt;Per comments in &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9547&quot; title=&quot;LBUG osp_dev.c:755:osp_statfs()) ASSERTION( sfs-&amp;gt;os_fprecreated &amp;lt;= OST_MAX_PRECREATE * 2 ) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9547&quot;&gt;&lt;del&gt;LU-9547&lt;/del&gt;&lt;/a&gt; last year, I hit that LASSERT while built with a reduced &lt;tt&gt;LUSTRE_DATA_SEQ_MAX_WIDTH = 0x1000&lt;/tt&gt; to exercise the SEQ changeover handling.  It looks like the problem is that when the sequence rolls over and &lt;tt&gt;osp_precreate_rollover_new_seq()&lt;/tt&gt; sets &lt;tt&gt;opd_pre_last_created_fid == opd_pre_used_fid&lt;/tt&gt; the &lt;tt&gt;opd_pre_reserved&lt;/tt&gt; value may be non-zero and is not changed.&lt;/p&gt;

&lt;p&gt;I had also tried setting &quot;&lt;tt&gt;seq.cli-cli-&amp;#42;OST&amp;#42;.width=4096&lt;/tt&gt;&quot; on an unmodified system, but it doesn&apos;t appear that the values under &quot;&lt;tt&gt;seq.&amp;#42;&lt;/tt&gt;&quot; are properly tied into the code.  Changing the &quot;&lt;tt&gt;width&lt;/tt&gt;&quot; did not seem to push object creation to a non-zero sequence for MDT0000.   They also showed &quot;&lt;tt&gt;space=&lt;span class=&quot;error&quot;&gt;&amp;#91;0x0-0x0&amp;#93;&lt;/span&gt;:0:mdt&lt;/tt&gt;&quot; and &quot;&lt;tt&gt;fid=&lt;span class=&quot;error&quot;&gt;&amp;#91;0x0:0x0:0x0&amp;#93;&lt;/span&gt;&lt;/tt&gt;&quot; for all MDT-&amp;gt;OST connections.&lt;/p&gt;</comment>
                            <comment id="267867" author="dongyang" created="Fri, 17 Apr 2020 05:21:33 +0000"  >&lt;p&gt;Andreas, after playing with&#160;LUSTRE_DATA_SEQ_MAX_WIDTH here is what I found, correct me if I&apos;m wrong:&lt;/p&gt;

&lt;p&gt;on OST we place the objects under /O/{seq}/d&lt;span class=&quot;error&quot;&gt;&amp;#91;0-31&amp;#93;&lt;/span&gt;, where seq is per MDT, for MDT0 the seq is&#160;FID_SEQ_OST_MDT0 which is 0. and looks like all the objects from one MDT will end up under the same /O/{seq}, even with reduced&#160;LUSTRE_DATA_SEQ_MAX_WIDTH the seq is still fixed for a single MDT.&lt;/p&gt;

&lt;p&gt;I think a walk around would be creating a number of MDTs so that one MDT would have 32M on the OST, limiting the number of objects under /O/{seq}/&lt;/p&gt;

&lt;p&gt;another way could be adding a new level of dir under /O/{seq} with object allocation progress, and limit the level to have 32M objects before rotating/changing over, I&apos;m looking at the related code to figure how to do this.&lt;/p&gt;</comment>
                            <comment id="267870" author="adilger" created="Fri, 17 Apr 2020 07:52:44 +0000"  >&lt;p&gt;Dongyang, it is presently that each OST is assigned a range of SEQ values that it sub-assigns to each MDT, and each MDT uses a sequence on the OST. MDT0000 is assigned SEQ=0, but ends up using IDIF SEQ, which is 0x1&amp;lt;ost_idx&amp;gt;&amp;lt;OID&amp;gt; instead of the more normal FID SEQ 0x20000xxx range that is later assigned.&lt;/p&gt;

&lt;p&gt;What &lt;em&gt;should&lt;/em&gt; happen is that when the MDT runs out of objects in the SEQ range (currently 4B objects), it gets a new SEQ for that OST and starts using it. This should happen rapidly if the SEQ range is small. &lt;/p&gt;

&lt;p&gt;It is possible that there are bugs in this mechanism, as it is used very rarely. Rather than work around the bugs, the code should be fixed to work properly. It would be good to get a bit more explanation of what is going wrong with the SEQ values/assignments on the MDT or OST. &lt;/p&gt;</comment>
                            <comment id="268942" author="gerrit" created="Thu, 30 Apr 2020 04:52:29 +0000"  >&lt;p&gt;Li Dongyang (dongyangli@ddn.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/38424&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38424&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; ofd: reduce LUSTRE_DATA_SEQ_MAX_WIDTH&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: aeb814066448024cb5cd619d0f25bd98c4182868&lt;/p&gt;</comment>
                            <comment id="268962" author="adilger" created="Thu, 30 Apr 2020 09:57:56 +0000"  >&lt;p&gt;There are already tunable parameters for the SEQ server on the MDS and OSS that could be used to manage the width for the range of FID sequences that were assigned by the OST to this &quot;client&quot; MDT (which is in turn a &quot;client&quot; of the SEQ controller for the &lt;tt&gt;testfs&lt;/tt&gt; filesystem), shown below:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;seq.ctl-testfs-MDT0000.space=[0x380000400 - 0xffffffffffffffff]:0:mdt
seq.ctl-testfs-MDT0000.width=1073741824
seq.cli-testfs-OST0001-super.fid=[0x0:0x0:0x0] *missing*
seq.cli-testfs-OST0001-super.server=testfs-MDT0000_UUID
seq.cli-testfs-OST0001-super.space=[0x0 - 0x0]:1:mdt *missing*
seq.cli-testfs-OST0001-super.width=4294967295
seq.srv-testfs-OST0001.server=testfs-MDT0000_UUID
seq.srv-testfs-OST0001.space=[0x2c0000bd0 - 0x300000400]:1:ost
seq.cli-cli-testfs-OST0001-osc-MDT0001.fid=[0x0:0x0:0x0] *missing*
seq.cli-cli-testfs-OST0001-osc-MDT0001.server=testfs-OST0001_UUID
seq.cli-cli-testfs-OST0001-osc-MDT0001.space=[0x0 - 0x0]:0:mdt *missing*
seq.cli-cli-testfs-OST0001-osc-MDT0001.width=4294967295 *ignored*
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The &lt;tt&gt;.width&lt;/tt&gt; field is the correct &lt;tt&gt;IDIF_FID_SEQ_MAX_WIDTH&lt;/tt&gt; value (without your patch), but it appears that the rest of the fields are not properly filled in, nor does changing &quot;&lt;tt&gt;.width&lt;/tt&gt;&quot; on this MDT appear to affect the number of objects created on the OST, so that needs to be fixed.  This &lt;em&gt;should&lt;/em&gt; be checking &quot;&lt;tt&gt;.width&lt;/tt&gt;&quot; instead of using a hard-coded value, and showing the most recent OST object FID that was allocated by this MDT as well as the range of remaining SEQ numbers.  The last preallocated OST object FIDs on &lt;tt&gt;MDT0001&lt;/tt&gt; ican be seen via:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;osp.testfs-OST0001-osc-MDT0001.prealloc_last_id=5761
osp.testfs-OST0001-osc-MDT0001.prealloc_last_seq=0x2c0000400
osp.testfs-OST0001-osc-MDT0001.prealloc_next_id=5730
osp.testfs-OST0001-osc-MDT0001.prealloc_next_seq=0x2c0000400
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;but they should be linked to the &lt;tt&gt;seq.&amp;#42;.fid&lt;/tt&gt; entries.&lt;/p&gt;



&lt;p&gt;On the regular Lustre client (which is itself a SEQ client of MDT0000&apos;s client of the master SEQ controller), this appears to be connected up and working properly, so it may be useful to look at the client MDC code:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;seq.srv-testfs-MDT0001.server=testfs-MDT0000_UUID
seq.srv-testfs-MDT0001.space=[0x240004a50 - 0x280000400]:1:mdt
seq.srv-testfs-MDT0001.width=1
seq.cli-testfs-MDT0001.server=srv-testfs-MDT0001
seq.cli-testfs-MDT0001.space=[0x240004282 - 0x240004282]:0:mdt
seq.cli-testfs-MDT0001.width=131072
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.fid=[0x240004282:0x7:0x0]
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.server=testfs-MDT0001_UUID
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.space=[0x240004283 - 0x240004283]:0:mdt
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.width=131072
# lfs setstripe -i 1 /mnt/testfs/dir1/bar
# lfs getstripe -vy /mnt/testfs/dir1/bar
lmm_fid:           0x240004282:0x7:0x0
lmm_objects:
      - l_ost_idx: 1
        l_fid:     0x2c0000400:0x1662:0x0
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This shows the client created a file on &lt;tt&gt;testfs-MDT0001&lt;/tt&gt; (because of dirstriping on &lt;tt&gt;dir1&lt;/tt&gt;), using a FID that it was assigned from &lt;tt&gt;testfs-MDT0001&lt;/tt&gt; for the inode, and the OST object that &lt;tt&gt;testfs-MDT0001&lt;/tt&gt; used was assigned to it by &lt;tt&gt;testfs-OST0001&lt;/tt&gt; (0x1662 = 5730).&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;# lctl set_param seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.width=8
seq.cli-cli-testfs-MDT0000-mdc-ffff9f3ad3991800.width=8
# lfs setstripe -i 1 /mnt/testfs/dir1/bar /mnt/testfs/dir1/bag
[root@centos7 lustre-copy]# lfs getstripe -vy /mnt/testfs/dir1/ba*
/mnt/testfs/dir1/bag: [0x240004283:0x1:0x0]
/mnt/testfs/dir1/baz: [0x240004282:0x8:0x0]
/mnt/testfs/dir1/bar: [0x240004282:0x7:0x0]
# lctl get_param seq.cli-cli-testfs-MDT0000-mdc-ff*.*
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.fid=[0x240004283:0x1:0x0]
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.server=testfs-MDT0001_UUID
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.space=[0x240004284 - 0x24000428]:0:mdt
seq.cli-cli-testfs-MDT0001-mdc-ffff9f3ad3991800.width=8
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This shows that on the regular MDC client, if I reduce the width and create new objects, the FID SEQ is rolled over to the next sequence, and the MDC client prefetches a new SEQ from its server (which happens to be the next SEQ number, but would not normally happen when there are many clients connected).&lt;/p&gt;</comment>
                            <comment id="319169" author="gerrit" created="Thu, 25 Nov 2021 03:05:15 +0000"  >&lt;p&gt;&quot;Li Dongyang &amp;lt;dongyangli@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/45659&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/45659&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; fid: clean up OBIF_MAX_OID and IDIF_MAX_OID&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 09ea80fb3fb6d9c82eded23e0e9088e90dd30901&lt;/p&gt;</comment>
                            <comment id="363152" author="gerrit" created="Fri, 17 Feb 2023 02:23:29 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/45659/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/45659/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; fid: clean up OBIF_MAX_OID and IDIF_MAX_OID&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: bb2f0dac868cf1321277bc3d7d6fc71f016d921b&lt;/p&gt;</comment>
                            <comment id="367622" author="gerrit" created="Tue, 28 Mar 2023 22:09:22 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/38424/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/38424/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; ofd: reduce LUSTRE_DATA_SEQ_MAX_WIDTH&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0ecb2a167c56ffff8e4fcb5cf576fb8c5d9e64fe&lt;/p&gt;</comment>
                            <comment id="367664" author="pjones" created="Wed, 29 Mar 2023 03:15:48 +0000"  >&lt;p&gt;Landed for 2.16&lt;/p&gt;</comment>
                            <comment id="367859" author="gerrit" created="Thu, 30 Mar 2023 13:16:21 +0000"  >&lt;p&gt;&quot;Li Dongyang &amp;lt;dongyangli@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50478&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50478&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: Adjust SEQ width according to OST count&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 04d876e6309b3c43b07f8b51c481977a417bf55d&lt;/p&gt;</comment>
                            <comment id="368734" author="green" created="Fri, 7 Apr 2023 00:48:47 +0000"  >&lt;p&gt;Looks like landings in this patch cause new crash in full testing, filed &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16720&quot; title=&quot;large-scale test_3a osp_precreate_rollover_new_seq()) ASSERTION( fid_seq(fid) != fid_seq(last_fid) ) failed: fid [0x240000bd0:0x1:0x0], last_fid [0x240000bd0:0x3fff:0x0]&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16720&quot;&gt;LU-16720&lt;/a&gt; for it.&lt;/p&gt;</comment>
                            <comment id="370253" author="gerrit" created="Sat, 22 Apr 2023 18:04:26 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50478/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50478/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: SEQ rollover fixes&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 2fdb1f8d01b9f55f8270b48edc0e105e40d42f55&lt;/p&gt;</comment>
                            <comment id="375191" author="gerrit" created="Tue, 13 Jun 2023 07:02:56 +0000"  >&lt;p&gt;&quot;Andreas Dilger &amp;lt;adilger@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51292&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51292&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: consume precreated objects in parallel&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: fff18a8adbd47d6e9e798ebbb68b93ce531b08dc&lt;/p&gt;</comment>
                            <comment id="376802" author="gerrit" created="Wed, 28 Jun 2023 21:46:57 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51292/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51292/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: consume precreated objects in parallel&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 656fc937cfd3fc3b65cb21a7f93a6bd4cc07fc0e&lt;/p&gt;</comment>
                            <comment id="389727" author="gerrit" created="Wed, 18 Oct 2023 05:25:24 +0000"  >&lt;p&gt;&quot;Li Dongyang &amp;lt;dongyangli@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52741&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52741&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: force new seq in runtests&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f1b7df40ab532db2472ed06784f6d4189e91b005&lt;/p&gt;</comment>
                            <comment id="390219" author="gerrit" created="Mon, 23 Oct 2023 12:11:49 +0000"  >&lt;p&gt;&quot;Li Dongyang &amp;lt;dongyangli@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52801&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52801&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: fix racing in force_new_seq_all&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: af6dcd597d7f5134de553349c05091e51e0f3dd6&lt;/p&gt;</comment>
                            <comment id="391588" author="gerrit" created="Fri, 3 Nov 2023 04:02:55 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52741/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52741/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: force new seq in runtests&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7d62340b3cbc49bae49dd2fa8d5e7a0a8e3c1b2e&lt;/p&gt;</comment>
                            <comment id="391590" author="gerrit" created="Fri, 3 Nov 2023 04:03:27 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52801/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52801/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11912&quot; title=&quot;reduce number of OST objects created per MDS Sequence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11912&quot;&gt;&lt;del&gt;LU-11912&lt;/del&gt;&lt;/a&gt; tests: fix racing in force_new_seq_all&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3f8318e983f1925c7b9f367c270593233b956dff&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10120">
                    <name>Blocker</name>
                                            <outwardlinks description="is blocking">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="76310">LU-16863</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="61154">LU-14023</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75348">LU-16682</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75371">LU-16692</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75479">LU-16720</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="76310">LU-16863</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="46265">LU-9547</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="62419">LU-14345</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="53659">LU-11546</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="71538">LU-16057</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="55092">LU-12051</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="64332">LU-14692</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <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|i00aq7:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>