<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 08:12:41 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>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[DOCS-15363] Publicly document `moveRange` command</title>
                <link>https://jira.mongodb.org/browse/DOCS-15363</link>
                <project id="10380" key="DOCS">Documentation</project>
                    <description>&lt;p&gt;Starting from v6.0.0, sharded clusters introduce the &lt;em&gt;moveRange&lt;/em&gt; command. The purpose of this ticket is to document the &lt;em&gt;moveRange&lt;/em&gt; command that will replace &lt;em&gt;moveChunk&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;The command offers:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;All the capabilities of &lt;em&gt;moveChunk&lt;/em&gt; command&lt;/li&gt;
	&lt;li&gt;The possibility to move a sub-range of a chunk&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Constraints:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;min and max need to either fit the boundaries of a chunk or be a sub-range of an existing chunk. It is not allowed to invoke &lt;em&gt;moveRange&lt;/em&gt; on a range spanning multiple chunks.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;The command is accepting the following parameters:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;&lt;em&gt;&lt;b&gt;&lt;tt&gt;toShard&lt;/tt&gt;&lt;/b&gt;&lt;/em&gt;: ID of the recipient shard&lt;/li&gt;
	&lt;li&gt;&lt;em&gt;&lt;b&gt;&lt;tt&gt;min&lt;/tt&gt;&lt;/b&gt;&lt;/em&gt;: the min key of the range to move&lt;/li&gt;
	&lt;li&gt;&lt;tt&gt;&lt;b&gt;&lt;em&gt;max&lt;/em&gt;&lt;/b&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;optional&amp;#93;&lt;/span&gt;&lt;/tt&gt;: the max key of the range to move. If not specified, given a chunk C including the shard key &lt;tt&gt;min&lt;/tt&gt;, &lt;tt&gt;max&lt;/tt&gt; is going to be automatically calculated as follows:
	&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
		&lt;li&gt;If the data size of the range between &lt;tt&gt;min&lt;/tt&gt; and &lt;tt&gt;max(C)&lt;/tt&gt; is less than the &lt;a href=&quot;https://www.mongodb.com/docs/v5.3/reference/command/configureCollectionBalancing/#configure-chunk-size&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;per-collection chunk size&lt;/a&gt; (if set) or the &lt;a href=&quot;https://www.mongodb.com/docs/manual/tutorial/modify-chunk-size-in-sharded-cluster/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;default chunk size&lt;/a&gt; , then the chunk&apos;s max is going to be selected as &lt;tt&gt;max = max(C)&lt;/tt&gt;&lt;/li&gt;
		&lt;li&gt;Otherwise, key max &amp;lt; max(C) where max(C) depends on the configured chunk size&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;b&gt;&lt;em&gt;forceJumbo&lt;/em&gt;&lt;/b&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;optional&amp;#93;&lt;/span&gt;: if set to true, force jumbo chunk/range move. The default value is false.&lt;/li&gt;
	&lt;li&gt;&lt;b&gt;&lt;em&gt;waitForDelete&lt;/em&gt;&lt;/b&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;optional&amp;#93;&lt;/span&gt;: if set to true, wait for the chunk migration to finish before returning. The default value is false.&lt;/li&gt;
	&lt;li&gt;&lt;b&gt;&lt;em&gt;writeConcern&lt;/em&gt;&lt;/b&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;optional&amp;#93;&lt;/span&gt;: (default = majority)&lt;/li&gt;
	&lt;li&gt;&lt;b&gt;&lt;em&gt;secondaryThrottle&lt;/em&gt;&lt;/b&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;optional&amp;#93;&lt;/span&gt;: if set to true, wait for writeConcern of secondaries to acknowledge data moving. The default value is false.&lt;/li&gt;
&lt;/ul&gt;


&lt;h4&gt;&lt;a name=&quot;Examples&quot;&gt;&lt;/a&gt;Examples&lt;/h4&gt;

&lt;p&gt;All the following examples are considering a sharded collection with shard key &lt;tt&gt;x&lt;/tt&gt;, configured chunk size 128MB, and a chunk with boundaries &lt;tt&gt;[x: 0, x: 100)&lt;/tt&gt;.&lt;/p&gt;
&lt;h5&gt;&lt;a name=&quot;Bothboundariesspecified&quot;&gt;&lt;/a&gt;Both boundaries specified&lt;/h5&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;User can call &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 0, max = 100&lt;/tt&gt; (behavior equivalent to &lt;em&gt;moveChunk&lt;/em&gt;)&lt;/li&gt;
	&lt;li&gt;User can call &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min&amp;gt;=0 &amp;amp;&amp;amp; max &amp;lt;=100&lt;/tt&gt; (new behavior, potentially resulting in splits + move):
	&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
		&lt;li&gt;E.g. &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 10, max = 30&lt;/tt&gt; will create 3 chunks and move the middle one to the recipient: &lt;tt&gt;[x: 0, x: 10)&lt;/tt&gt;, &lt;tt&gt;[x: 10, x: 30)&lt;/tt&gt;, &lt;tt&gt;[x: 30, x: 100)&lt;/tt&gt;&lt;/li&gt;
		&lt;li&gt;E.g. &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 0, max = 20&lt;/tt&gt; will create 2 chunks and move the left one to the recipient: &lt;tt&gt;[x: 0, x: 20)&lt;/tt&gt;, &lt;tt&gt;[x: 20, x: 100)&lt;/tt&gt;&lt;/li&gt;
		&lt;li&gt;E.g. &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 40, max = 100&lt;/tt&gt; will create 2 chunks and move the right one to the recipient: &lt;tt&gt;[x: 0, x: 40)&lt;/tt&gt;, &lt;tt&gt;[x: 40, x: 100)&lt;/tt&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


&lt;h5&gt;&lt;a name=&quot;Only%7B%7Bmin%7D%7Dspecified%28%7B%7B%7B%7Dmax%7B%7D%7D%7Dwillbecalculated%29&quot;&gt;&lt;/a&gt;Only &lt;tt&gt;min&lt;/tt&gt; specified (&lt;tt&gt;max&lt;/tt&gt; will be calculated)&lt;/h5&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;User can call &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;0 &amp;lt;= min &amp;lt; 100&lt;/tt&gt;
	&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
		&lt;li&gt;E.g. &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 0&lt;/tt&gt;, assuming less than 128MB contained between keys &lt;tt&gt;x: 0&lt;/tt&gt; and &lt;tt&gt;x:100&lt;/tt&gt;: equivalent to &lt;em&gt;moveChunk&lt;/em&gt;, will move the whole chunk on the recipient&lt;/li&gt;
		&lt;li&gt;E.g. &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 10&lt;/tt&gt;, assuming less than 128MB contained between keys &lt;tt&gt;x: 10&lt;/tt&gt; and &lt;tt&gt;x:100&lt;/tt&gt;: will create 2 chunks and move the right one on the recipient: &lt;tt&gt;[x: 0, x: 10)&lt;/tt&gt;, &lt;tt&gt;[x: 10, x: 100)&lt;/tt&gt;&lt;/li&gt;
		&lt;li&gt;E.g. &lt;em&gt;moveRange&lt;/em&gt; with &lt;tt&gt;min = 10&lt;/tt&gt;, assuming 128MB contained between keys &lt;tt&gt;x: 10&lt;/tt&gt; and &lt;tt&gt;x:30&lt;/tt&gt;: will create 3 chunks and move the middle one on the recipient: &lt;tt&gt;[x: 0, x: 10)&lt;/tt&gt;, &lt;tt&gt;[x: 10, x: 30)&lt;/tt&gt;, &lt;tt&gt;[x: 30, x: 100)&lt;/tt&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
        <key id="2055987">DOCS-15363</key>
            <summary>Publicly document `moveRange` command</summary>
                <type id="3" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14718&amp;avatarType=issuetype">Task</type>
                                            <priority id="2" iconUrl="https://jira.mongodb.org/images/icons/priorities/critical.svg">Critical - P2</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="13201">Fixed</resolution>
                                        <assignee username="joseph.dougherty@mongodb.com">Joseph Dougherty</assignee>
                                    <reporter username="pierlauro.sciarelli@mongodb.com">Pierlauro Sciarelli</reporter>
                        <labels>
                    </labels>
                <created>Thu, 26 May 2022 16:00:59 +0000</created>
                <updated>Mon, 13 Nov 2023 17:27:16 +0000</updated>
                            <resolved>Fri, 7 Oct 2022 20:56:17 +0000</resolved>
                                    <version>6.0.0</version>
                                    <fixVersion>6.0.0</fixVersion>
                    <fixVersion>Server_Docs_20231030</fixVersion>
                    <fixVersion>Server_Docs_20231106</fixVersion>
                    <fixVersion>Server_Docs_20231105</fixVersion>
                    <fixVersion>Server_Docs_20231113</fixVersion>
                                    <component>manual</component>
                    <component>Server</component>
                        <due>Sat, 8 Oct 2022 00:00:00 +0000</due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="5049512" author="xgen-internal-githook" created="Mon, 12 Dec 2022 23:01:29 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;jmd-mongo&apos;, &apos;email&apos;: &apos;73852296+jmd-mongo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;jmd-mongo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15363&quot; title=&quot;Publicly document `moveRange` command&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15363&quot;&gt;&lt;del&gt;DOCS-15363&lt;/del&gt;&lt;/a&gt; documents moveRange (#1947)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;documents moveRange&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;restores moveChunk() method&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;cleanup&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;toShard&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;removes moveChunk&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert 2.6&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;br/&gt;
Branch: indexes-refactor&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/c573e744562296cce59bd8575ffbe98bbe179e50&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/c573e744562296cce59bd8575ffbe98bbe179e50&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4887281" author="xgen-internal-githook" created="Fri, 7 Oct 2022 20:55:35 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;jmd-mongo&apos;, &apos;email&apos;: &apos;73852296+jmd-mongo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;jmd-mongo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15363&quot; title=&quot;Publicly document `moveRange` command&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15363&quot;&gt;&lt;del&gt;DOCS-15363&lt;/del&gt;&lt;/a&gt; documents moveRange (#1947) (#1986)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;documents moveRange&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;restores moveChunk() method&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;cleanup&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;toShard&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;removes moveChunk&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert 2.6&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/1f800d9637076e76c04b385fa2238bd455168c65&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/1f800d9637076e76c04b385fa2238bd455168c65&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4887269" author="xgen-internal-githook" created="Fri, 7 Oct 2022 20:50:16 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;jmd-mongo&apos;, &apos;email&apos;: &apos;73852296+jmd-mongo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;jmd-mongo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15363&quot; title=&quot;Publicly document `moveRange` command&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15363&quot;&gt;&lt;del&gt;DOCS-15363&lt;/del&gt;&lt;/a&gt; documents moveRange (#1947) (#1985)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;documents moveRange&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;restores moveChunk() method&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;cleanup&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;toShard&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;removes moveChunk&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert 2.6&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/4be678931b3377f56ced946e71ad21c9fa196657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/4be678931b3377f56ced946e71ad21c9fa196657&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4887248" author="xgen-internal-githook" created="Fri, 7 Oct 2022 20:40:11 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;jmd-mongo&apos;, &apos;email&apos;: &apos;73852296+jmd-mongo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;jmd-mongo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15363&quot; title=&quot;Publicly document `moveRange` command&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15363&quot;&gt;&lt;del&gt;DOCS-15363&lt;/del&gt;&lt;/a&gt; documents moveRange (#1947)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;documents moveRange&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;restores moveChunk() method&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;cleanup&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;toShard&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;removes moveChunk&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert 2.6&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;revert&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;review feedback&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/c573e744562296cce59bd8575ffbe98bbe179e50&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/c573e744562296cce59bd8575ffbe98bbe179e50&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10420">
                    <name>Backports</name>
                                            <outwardlinks description="backported by">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="2043196">DOCS-15332</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10020">
                    <name>Gantt Dependency</name>
                                            <outwardlinks description="has to be done before">
                                        <issuelink>
            <issuekey id="2046967">DOCS-15340</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10520">
                    <name>Problem/Incident</name>
                                            <outwardlinks description="causes">
                                        <issuelink>
            <issuekey id="2305938">DOCS-16004</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="2056027">SERVER-66805</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                                        </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 14 Jun 2022 13:05:17 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        1 year, 8 weeks, 2 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>DOCSP-19446</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>emet.ozar@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            1 year, 8 weeks, 2 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>joseph.dougherty@mongodb.com</customfieldvalue>
            <customfieldvalue>pierlauro.sciarelli@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i0wfun:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|i0fbuw:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i0w1zz:</customfieldvalue>

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