<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:41:56 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-11213] DNE3: remote mkdir() in ROOT/ by default</title>
                <link>https://jira.whamcloud.com/browse/LU-11213</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;In order to start using multiple MDTs on a filesystem automatically, I wonder if it makes sense to start creating any directories under the filesystem ROOT/ directory remotely by default?  This could be a client parameter that can be disabled if desired, but as can be seen in &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11211&quot; title=&quot;Performance degradation in mdtest&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11211&quot;&gt;LU-11211&lt;/a&gt; it is not very clear to users how to get multiple MDTs active by default. With OST object allocation we already do this by default for all objects. &lt;/p&gt;

&lt;p&gt;While there is some overhead to creating remote directories, this top-level directories are best placed to allow maximal distribution across all of the MDTs. This would also work as new MDTs are added to the filesystem.&lt;/p&gt;

&lt;p&gt;Using remote directories at the top level is a lot easier than trying to create a striped directory for ROOT/, since that would also need to change as new MDTs are added to the filesystem. It also allows more dynamic load balancing across MDTs. &lt;/p&gt;

&lt;p&gt;As for implementation, the client tunable might be something like &quot;&lt;tt&gt;llite.&amp;#42;.mdt_distribution_enabled&lt;/tt&gt;&quot; to turn it on/off, and &quot;&lt;tt&gt;llite.&amp;#42;.mdt_distribution_seconds&lt;/tt&gt;&quot;, which is how often the client will do &lt;tt&gt;obd_statfs()&lt;/tt&gt; to the MDTs to get space/inode info, so that it doesn&apos;t need to do this for every create. Once per 5s would be the minimum, maybe as long as 60s?  &lt;/p&gt;

&lt;p&gt;The &lt;tt&gt;ROOT/&lt;/tt&gt; directory would get a flag like &lt;tt&gt;LUSTRE_TOPDIR_FL&lt;/tt&gt;/&lt;tt&gt;LMAI_TOPDIR&lt;/tt&gt; set when it is created that indicates the directory is a top-level directory and should have automatic remote directories created in it. This can be set manually by users on other directories with the &quot;&lt;tt&gt;chattr +T&lt;/tt&gt;&quot; command, but it would not be inherited by subdirectories. &lt;/p&gt;

&lt;p&gt;Using the same algorithms and tunables as LOV QOS for MDT selection would help leverage the same code, and allow us to improve the code together in the future. &lt;/p&gt;</description>
                <environment></environment>
        <key id="52903">LU-11213</key>
            <summary>DNE3: remote mkdir() in ROOT/ by default</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="laisiyao">Lai Siyao</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                            <label>dne3</label>
                    </labels>
                <created>Sat, 4 Aug 2018 18:45:45 +0000</created>
                <updated>Mon, 7 Feb 2022 23:54:04 +0000</updated>
                            <resolved>Fri, 20 Sep 2019 14:31:40 +0000</resolved>
                                                    <fixVersion>Lustre 2.13.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>10</watches>
                                                                            <comments>
                            <comment id="231467" author="adilger" created="Sun, 5 Aug 2018 20:45:25 +0000"  >&lt;p&gt;Another way to do this that might be easier for Lustre users to handle is to allow setting &quot;&lt;tt&gt;lfs setdirstripe -D -c1 -i -1 /mnt/lustre/remotedir&lt;/tt&gt;&quot; that will cause all new subdirectories to be created on the &quot;best&quot; MDT index, as we do with regular OST selection. Typically this should be round-robin if the MDT available space is relatively close, but will select a less full MDT if the space gets out of balance. &lt;/p&gt;</comment>
                            <comment id="231477" author="laisiyao" created="Mon, 6 Aug 2018 04:02:15 +0000"  >&lt;p&gt;This can be simpler in this way: in ll_mkdir(), if parent is ROOT, fake an lmv_user_md which specifies a less empty MDT to create this directory. And this can ever be applied on general mkdir which is not under ROOT, but user may find mkdir is slow, so it&apos;s better to let directory restripe to balance MDT usage for directory not under ROOT.&lt;/p&gt;</comment>
                            <comment id="231662" author="adilger" created="Wed, 8 Aug 2018 18:49:51 +0000"  >&lt;p&gt;The one issue with checking for &lt;tt&gt;ROOT/&lt;/tt&gt; is that this will potentially have problems with subdirectory mounts with or without nodemaps, where a client is mounting only a subdirectory and doesn&apos;t see &lt;tt&gt;ROOT/&lt;/tt&gt; at all.  Having an explicit flag or a layout on the &lt;tt&gt;ROOT/&lt;/tt&gt; or other directory (that can be set/removed by the user) is much more flexible and doesn&apos;t really add more complexity.&lt;/p&gt;

&lt;p&gt;In theory, we could always set the equivalent of &lt;tt&gt;lfs setstripe -i 1 -c -1&lt;/tt&gt; on the &lt;tt&gt;ROOT/&lt;/tt&gt; directory at format time, so that top-level directories are distributed across MDTs by default.  Even if there was only a single MDT to start with, this would allow load distribution to other MDTs when they are added.&lt;/p&gt;

&lt;p&gt;We might want to consider adding a &quot;no inherit&quot; mode for this kind of layout, so that it doesn&apos;t propagate to new subdirectories.&lt;/p&gt;</comment>
                            <comment id="239203" author="laisiyao" created="Sat, 29 Dec 2018 07:25:15 +0000"  >&lt;p&gt;Hi Andreas, the issue with setting this in default directory stripe is that we can&apos;t both have global default dir stripe and this feature in the same time. And IMHO this is not needed for non-ROOT directory because non-ROOT directory can be a striped directory, so subdirectories are distributed by default. So fundamentally this feature is introduced is because ROOT in Lustre DNE system is not striped.&lt;/p&gt;</comment>
                            <comment id="239206" author="adilger" created="Sat, 29 Dec 2018 09:26:52 +0000"  >&lt;p&gt;I think there are two separate issues here:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;being able to set the dirstripe index for a directory to be -1, which allows balancing new subdirectories across MDTs. This may be useful for directories other than the root directory. While it is similar to a striped directory, because it is not a strict function of the filename it has the benefit that it can balance usage across MDTs better, and it also is not tied to a &quot;stripe count&quot; for a specific number of MDTs.&lt;/li&gt;
	&lt;li&gt;wanting to have the &quot;-1&quot; stripe index on the root directory, but setting a different &quot;default&quot; dirstripe for the rest of the filesystem.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;I don&apos;t think these two behaviors are incompatible. The &quot;-1&quot; index behavior is a property of the directory itself, essentially like a hashed layout that can be added on an existing plain directory that affects new subdirectory entries in the directory itself. That is not the same as the default directory layout that affects how the subdirectory will be created (eg. stripe count/hash function of the subdirectory). &lt;/p&gt;

&lt;p&gt;In a regular striped directory, the location of the subdirectory is based on the name and the hash function strored in the LMV of the directory itself. In the proposed change, we would add a new hash function that means &quot;ignore the filename and use the &apos;best&apos; (usually least full) MDT for the new subdirectory&quot;. We would want to be able to set such a layout on an existing directory (in particular the ROOT directory), but it would still be possible for those directories to inherit the default directory layout from the parent as well (eg. stripe_count).&lt;/p&gt;</comment>
                            <comment id="239237" author="laisiyao" created="Tue, 1 Jan 2019 03:36:01 +0000"  >&lt;p&gt;The problem is that the global default stripe is now stored as the default stripe of ROOT, and we can&apos;t store two default stripe there. One option is to move the global default stripe somewhere else, but it needs taking care of backward compatibility; or we use the original proposal to store this as LUSTRE_TOPDIR_FL/LMAI_TOPDIR, and alter it via chattr.&lt;/p&gt;</comment>
                            <comment id="239239" author="adilger" created="Wed, 2 Jan 2019 04:12:11 +0000"  >&lt;p&gt;Is that true for directory default stripe or only file default stripe?  Also, the directory default stripe should be inherited from the LMV dirstripe default and not the actual LMV layout of the directory. &lt;/p&gt;</comment>
                            <comment id="239242" author="laisiyao" created="Wed, 2 Jan 2019 06:32:23 +0000"  >&lt;p&gt;It&apos;s true for both file and directory default stripe. And it&apos;s also true for directory layout, so by default if parent doesn&apos;t have default LMV dirstripe, subdirectories are created as plain directory, and doesn&apos;t have default LMV either.&lt;/p&gt;</comment>
                            <comment id="239267" author="adilger" created="Wed, 2 Jan 2019 19:08:05 +0000"  >&lt;p&gt;I&apos;m still confused. There is the LMV default layout stores on a directory, which is inherited by newly created directories, which can be set on the root directory and is the default for the whole filesystem.  I&apos;m not necessarily suggesting to always change the default layout of the directory, though this seems natural if &lt;tt&gt;lmv_stripe_index = -1&lt;/tt&gt; in the default layout.&lt;/p&gt;

&lt;p&gt;Separately, there is the LMV layout of the directory itself, which describes how new filenames created in that directory are mapped to MDTs (normally via a filename hash)  and should &lt;b&gt;not&lt;/b&gt; be inherited. One option is to create a new hash type/flag (eg. &lt;tt&gt;LMV_HASH_FLAG_REMOTE&lt;/tt&gt; or &lt;tt&gt;LMV_HASH_FLAG_BALANCED&lt;/tt&gt;) that can be set on an existing single-stripe directory, similar to &lt;tt&gt;LOV_PATTERN_F_HOLE&lt;/tt&gt; and &lt;tt&gt;LOV_PATTERN_F_RELEASED&lt;/tt&gt; on regular files. This will not affect where the &lt;b&gt;names&lt;/b&gt; of new directories are created, but the directories themselves &lt;em&gt;may&lt;/em&gt; be located on remote MDTs if the space is imbalanced. &lt;/p&gt;</comment>
                            <comment id="239284" author="laisiyao" created="Thu, 3 Jan 2019 01:24:11 +0000"  >&lt;p&gt;Okay, I see what you mean, I thought it&apos;s not allowed to set LMV on an existed directory, because currently setxattr(LMV) is used to create remote/striped directory, but by checking these special flags we can store LMV on plain directories.&lt;/p&gt;</comment>
                            <comment id="243152" author="gerrit" created="Fri, 1 Mar 2019 15:54:33 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34357&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34357&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: add plain layout connect flag&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 04aad90949db53d4005af58b35d6b06bafb42536&lt;/p&gt;</comment>
                            <comment id="243153" author="gerrit" created="Fri, 1 Mar 2019 15:54:33 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34358&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34358&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; layout: add plain layout command and RPC&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f4f8a2fd13deb0ecc7b2b3aa79a090e5ae3c48d6&lt;/p&gt;</comment>
                            <comment id="243154" author="gerrit" created="Fri, 1 Mar 2019 15:54:34 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34359&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34359&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: add async statfs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a4a191ce52209acf21894117b2643363de4284f4&lt;/p&gt;</comment>
                            <comment id="243155" author="gerrit" created="Fri, 1 Mar 2019 15:54:34 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34360&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34360&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: distribute subdir by plain layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 76ede2ca7ba77c5a8ca0b3127e36c5dd07e24830&lt;/p&gt;</comment>
                            <comment id="245742" author="gerrit" created="Sun, 14 Apr 2019 01:01:00 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34656&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34656&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: reserve connect flag for plain layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 28c29ca9f1f2f2b027010da4b90fc498fbcfe63b&lt;/p&gt;</comment>
                            <comment id="245743" author="gerrit" created="Sun, 14 Apr 2019 01:01:02 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34657&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: reuse object alloc QoS code from LOD&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 07cf35c82f3f9511fd49b6553f9c8041e94d2e5e&lt;/p&gt;</comment>
                            <comment id="246041" author="gerrit" created="Thu, 18 Apr 2019 22:10:01 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34656/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34656/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: reserve connect flag for plain layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 14ee65e77bdcf390568f81fad7505048f69bebe9&lt;/p&gt;</comment>
                            <comment id="246705" author="gerrit" created="Sat, 4 May 2019 08:59:43 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34801&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34801&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: revert plain layout connect flag&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 29ba9891419282688bd11458288017a7c6595926&lt;/p&gt;</comment>
                            <comment id="246706" author="gerrit" created="Sat, 4 May 2019 08:59:45 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34802&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34802&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; ptlrpc: intent_getattr fetches default LMV&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ae4babe49c13ce868ad7f25823c61d83df9fbd26&lt;/p&gt;</comment>
                            <comment id="248326" author="gerrit" created="Tue, 4 Jun 2019 05:26:49 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34358/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34358/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; dne: add new dir hash type &quot;space&quot;&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a24f6153292753bf6e40f5638930d6cffa78e1ac&lt;/p&gt;</comment>
                            <comment id="248624" author="gerrit" created="Fri, 7 Jun 2019 04:08:37 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34802/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34802/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; ptlrpc: intent_getattr fetches default LMV&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 55ca00c3d1cd8635258ccbda27ee3f0f9b2966a8&lt;/p&gt;</comment>
                            <comment id="248625" author="gerrit" created="Fri, 7 Jun 2019 04:08:41 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34359/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34359/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; mdc: add async statfs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7f412954ad38b540ccbbf241b25c594faf5ca79d&lt;/p&gt;</comment>
                            <comment id="248626" author="gerrit" created="Fri, 7 Jun 2019 04:08:52 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34360/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34360/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: mkdir with balanced space usage&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6d296587441d80588340200903027ac4231922cd&lt;/p&gt;</comment>
                            <comment id="249134" author="gerrit" created="Wed, 12 Jun 2019 15:42:08 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/35207&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35207&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lod: default LMV can&apos;t be deleted&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f97f099fa0569e2dc0da3910334dbcda18497b3e&lt;/p&gt;</comment>
                            <comment id="249135" author="gerrit" created="Wed, 12 Jun 2019 15:42:08 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/35208&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35208&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; doc: update lfs-setdirstripe man &apos;space&apos; hash&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c68307895183090ea7ab89208d192c0276cfe2b5&lt;/p&gt;</comment>
                            <comment id="249141" author="adilger" created="Wed, 12 Jun 2019 17:34:39 +0000"  >&lt;p&gt;I was thinking about how we might best use this feature in the field. It definitely makes sense to set it on the root directory (at some point by default, but not yet).  However, one concern that I have is that (AFAIK) remote directories created by this feature will have &lt;tt&gt;fnv-1a&lt;/tt&gt; hash type set on them (ie. they will be striped directories)?  I don&apos;t think that is something that we want, but rather to make the new directories be unstriped.&lt;/p&gt;

&lt;p&gt;It may also be useful to allow specifying an &quot;inherit_depth=N&quot;, so that if set on the root directory it will create the next N subdirectories with space-hash (eg. inherit_depth=1 on root sets space-hash for the top-level user directories, but lower-level directories revert to plain dirs).  Using this avoids the situation where one user has a lot of files on their initial MDT, but their subdirectories don&apos;t get distributed further across MDTs, but we don&apos;t want the overhead of remote directories at every level. If we want &lt;b&gt;all&lt;/b&gt; directories to be remote, then set &quot;inherit_depth=-1&quot; (probably an 8-bit field would be enough, given &lt;tt&gt;PATH_MAX&lt;/tt&gt; limits), and maybe special-case the &quot;-1&quot; value so it is never decremented. This would also be useful for striped directories I think. &lt;/p&gt;</comment>
                            <comment id="249174" author="gerrit" created="Thu, 13 Jun 2019 04:16:56 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34657/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34657/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: reuse object alloc QoS code from LOD&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b601eb35e97ae74d3de448e07a28ce41afb4adef&lt;/p&gt;</comment>
                            <comment id="249197" author="gerrit" created="Thu, 13 Jun 2019 10:52:52 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/35218&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35218&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: use lu_tgt_descs to manage tgts&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 57227c73a9f891ac6f44e3bf5eb578208c323040&lt;/p&gt;</comment>
                            <comment id="249198" author="gerrit" created="Thu, 13 Jun 2019 10:52:53 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/35219&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35219&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lod: share object alloc QoS code with LMV&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2b42209a3abb44180938eafd6502e430bbba775b&lt;/p&gt;</comment>
                            <comment id="249526" author="gerrit" created="Thu, 20 Jun 2019 03:50:53 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/35208/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35208/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; doc: update lfs-setdirstripe man &apos;space&apos; hash&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8c914986bf415a535153f77e53e630707f8e1a1c&lt;/p&gt;</comment>
                            <comment id="249527" author="gerrit" created="Thu, 20 Jun 2019 03:51:14 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/35207/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35207/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lod: default LMV can&apos;t be deleted&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 36243c75bd55c9e4d24f4e592fe03c92b56baedd&lt;/p&gt;</comment>
                            <comment id="249985" author="gerrit" created="Tue, 25 Jun 2019 15:42:05 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/35318&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35318&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: change &quot;space&quot; hash type to hash flag&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a8bb3df4d894340e58859270bfd516cc3aabd73c&lt;/p&gt;</comment>
                            <comment id="251184" author="gerrit" created="Fri, 12 Jul 2019 05:19:40 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/35318/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35318/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: change &quot;space&quot; hash type to hash flag&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c605ef1dbeb401bdff5ab3cfa1c407ea87a7b95d&lt;/p&gt;</comment>
                            <comment id="253930" author="gerrit" created="Fri, 30 Aug 2019 13:41:57 +0000"  >&lt;p&gt;Patrick Farrell (pfarrell@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/36008&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/36008&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: Remove unused CONNECT flag&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e06df46d294b87e28071708f2f21e7bca26d0e8c&lt;/p&gt;</comment>
                            <comment id="254315" author="gerrit" created="Sat, 7 Sep 2019 01:50:42 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/36008/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/36008/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; uapi: Remove unused CONNECT flag&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 11eba11fe0457b735194e5924e7bb1882a5b31b8&lt;/p&gt;</comment>
                            <comment id="255089" author="gerrit" created="Fri, 20 Sep 2019 07:51:06 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/35218/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35218/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lmv: use lu_tgt_descs to manage tgts&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 59fc1218fccf1a826182ff7cd52321e3efbb1eab&lt;/p&gt;</comment>
                            <comment id="255090" author="gerrit" created="Fri, 20 Sep 2019 07:53:24 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/35219/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35219/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; lod: share object alloc QoS code with LMV&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d3090bb2b4860e997730e90426e11fc51ee27c0c&lt;/p&gt;</comment>
                            <comment id="255141" author="pjones" created="Fri, 20 Sep 2019 14:31:40 +0000"  >&lt;p&gt;Landed for 2.13&lt;/p&gt;</comment>
                            <comment id="325509" author="gerrit" created="Mon, 7 Feb 2022 23:54:04 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/46476&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/46476&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11213&quot; title=&quot;DNE3: remote mkdir() in ROOT/ by default&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11213&quot;&gt;&lt;del&gt;LU-11213&lt;/del&gt;&lt;/a&gt; llite: Remove old compat code&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f73bd88bf81f6ab92648716217b638cc793fbb53&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10120">
                    <name>Blocker</name>
                                                                <inwardlinks description="is blocked by">
                                        <issuelink>
            <issuekey id="55597">LUDOC-439</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10323">
                    <name>Gantt End to End</name>
                                                                <inwardlinks description="has to be finished together with">
                                        <issuelink>
            <issuekey id="55921">LUDOC-442</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="52900">LU-11211</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="35073">LU-7827</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="55944">LU-12434</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="45378">LU-9309</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="56556">LU-12624</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58656">LU-13417</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="45823">LU-9435</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="51154">LU-10784</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="33710" name="Lustre Feature Test Plan for DNE3-update.docx" size="23492" author="sarah" created="Thu, 24 Oct 2019 22:38:47 +0000"/>
                    </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|i000b3:</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>