<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 06:26:34 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>[SERVER-74124] Disallow sharding with wildcard shard key pattern</title>
                <link>https://jira.mongodb.org/browse/SERVER-74124</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;Currently, the &lt;a href=&quot;https://github.com/10gen/mongo/blob/5014eef0db04353eb8fc937c502f28de04ab7a85/src/mongo/s/shard_key_pattern.cpp#L47-L95&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;validation&lt;/a&gt; within the ShardKeyPattern class doesn&apos;t check that the shard key fields don&apos;t have the &quot;$&quot; prefix. So the shardCollection command depends on the index key pattern validation &lt;a href=&quot;https://github.com/10gen/mongo/blob/869367b6613b64a1d5444f5105866e43e3b44878/src/mongo/db/catalog/index_key_validate.cpp#L274-L278&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;here&lt;/a&gt; to prevent a shard key like {&quot;$x&quot;: 1} from being used. However, &quot;$**&quot; is a special field name is allowed to &lt;a href=&quot;https://github.com/10gen/mongo/blob/869367b6613b64a1d5444f5105866e43e3b44878/src/mongo/db/catalog/index_key_validate.cpp#L244-L248&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;bypass&lt;/a&gt; this check.&lt;/p&gt;

&lt;p&gt;As a result, one can run a shardCollection command with the shard key with {&quot;$**&quot;: 1} without getting any error. However, the resulting collection appears to have a number of unexpected behaviors. For example:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Running a listCollections command would fail with a BadValue error &quot;unknown top level operator: $**. If you have a field name that starts with a &apos;$&apos; symbol, consider using $getField or $setField.&quot;.&lt;/li&gt;
	&lt;li&gt;Running a {$collStats: {}} aggregation would hit this &lt;a href=&quot;https://github.com/10gen/mongo/blob/c7990375f37615368eb0cd9aadf2c2cb96fb8f9f/src/mongo/db/query/planner_wildcard_helpers.cpp#L453-L454&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;tassert&lt;/a&gt; in &lt;a href=&quot;https://github.com/10gen/mongo/blob/2554097b5996115fd55522c75308af946c9afb18/src/mongo/db/query/planner_ixselect.cpp#L338&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;QueryPlannerIXSelect&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
        <key id="2266933">SERVER-74124</key>
            <summary>Disallow sharding with wildcard shard key pattern</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</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="cheahuychou.mao@mongodb.com">Cheahuychou Mao</assignee>
                                    <reporter username="cheahuychou.mao@mongodb.com">Cheahuychou Mao</reporter>
                        <labels>
                    </labels>
                <created>Thu, 16 Feb 2023 21:17:01 +0000</created>
                <updated>Sun, 29 Oct 2023 21:26:06 +0000</updated>
                            <resolved>Thu, 23 Feb 2023 21:21:28 +0000</resolved>
                                    <version>4.2.0</version>
                    <version>4.4.0</version>
                    <version>5.0.0</version>
                    <version>6.0.0</version>
                    <version>6.3.0-rc0</version>
                                    <fixVersion>7.0.0-rc0</fixVersion>
                    <fixVersion>6.0.5</fixVersion>
                    <fixVersion>6.3.0-rc1</fixVersion>
                    <fixVersion>4.4.20</fixVersion>
                    <fixVersion>5.0.16</fixVersion>
                                    <component>Sharding</component>
                                        <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="5253286" author="xgen-internal-githook" created="Mon, 6 Mar 2023 21:56:36 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Skip reshardCollection test case in sharding_last_lts_mongos_and_mixed_shards suite&lt;br/&gt;
Branch: v5.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/2a5fd686d1f2721835e5a53ab9e6f6b8ab074475&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/2a5fd686d1f2721835e5a53ab9e6f6b8ab074475&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5235076" author="xgen-internal-githook" created="Tue, 28 Feb 2023 02:14:13 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Use StringData::startsWith instead of StringData::find to check for &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit fbb8024e67150305f9fc94b3a5fe57f6b8403de3)&lt;br/&gt;
Branch: v4.4&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/a8a56aa7d8b4f2719bd8313bc4f6e06e6bb6a626&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/a8a56aa7d8b4f2719bd8313bc4f6e06e6bb6a626&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5235075" author="xgen-internal-githook" created="Tue, 28 Feb 2023 02:14:11 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Disallow shard key pattern with fields that have parts that start with &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 7137269)&lt;br/&gt;
Branch: v4.4&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/ccf7b6c7cda1a93e1c87fb30663c8c6a4c093f60&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/ccf7b6c7cda1a93e1c87fb30663c8c6a4c093f60&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226749" author="xgen-internal-githook" created="Thu, 23 Feb 2023 21:20:04 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Use StringData::startsWith instead of StringData::find to check for &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit fbb8024e67150305f9fc94b3a5fe57f6b8403de3)&lt;br/&gt;
Branch: v5.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/cbfb04f1a151a7da2a71125286a7e3bd20cf2217&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/cbfb04f1a151a7da2a71125286a7e3bd20cf2217&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226748" author="xgen-internal-githook" created="Thu, 23 Feb 2023 21:20:02 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Disallow shard key pattern with fields that have parts that start with &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 71372698d18785a374aa09bdd646d3c5dc2f227a)&lt;br/&gt;
Branch: v5.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/f22bd2c1958f7d79e62b1b0f213ce5318c597bbb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/f22bd2c1958f7d79e62b1b0f213ce5318c597bbb&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226740" author="xgen-internal-githook" created="Thu, 23 Feb 2023 21:18:15 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Use StringData::startsWith instead of StringData::find to check for &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit fbb8024e67150305f9fc94b3a5fe57f6b8403de3)&lt;br/&gt;
Branch: v6.3&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/7e54d2db7397fcd7f61abe03fabb7f9a2104fbb2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/7e54d2db7397fcd7f61abe03fabb7f9a2104fbb2&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226739" author="xgen-internal-githook" created="Thu, 23 Feb 2023 21:18:13 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Disallow shard key pattern with fields that have parts that start with &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 71372698d18785a374aa09bdd646d3c5dc2f227a)&lt;br/&gt;
Branch: v6.3&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/8f3946c68aa48d85472ff005a4bd03d9df2ba4b9&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/8f3946c68aa48d85472ff005a4bd03d9df2ba4b9&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226721" author="xgen-internal-githook" created="Thu, 23 Feb 2023 21:14:08 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Use StringData::startsWith instead of StringData::find to check for &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit fbb8024e67150305f9fc94b3a5fe57f6b8403de3)&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/a8c8ebde234867480ce829a0076e91b9a0f61591&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/a8c8ebde234867480ce829a0076e91b9a0f61591&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226720" author="xgen-internal-githook" created="Thu, 23 Feb 2023 21:14:06 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Disallow shard key pattern with fields that have parts that start with &apos;$&apos;&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 71372698d18785a374aa09bdd646d3c5dc2f227a)&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/d21dedda973c25da704c9ad416d20bdcf384892f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/d21dedda973c25da704c9ad416d20bdcf384892f&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5226548" author="xgen-internal-githook" created="Thu, 23 Feb 2023 20:17:30 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Use StringData::startsWith instead of StringData::find to check for &apos;$&apos;&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/fbb8024e67150305f9fc94b3a5fe57f6b8403de3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/fbb8024e67150305f9fc94b3a5fe57f6b8403de3&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5223388" author="xgen-internal-githook" created="Thu, 23 Feb 2023 01:11:39 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Cheahuychou Mao&apos;, &apos;email&apos;: &apos;mao.cheahuychou@gmail.com&apos;, &apos;username&apos;: &apos;cheahuychou&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-74124&quot; title=&quot;Disallow sharding with wildcard shard key pattern&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-74124&quot;&gt;&lt;del&gt;SERVER-74124&lt;/del&gt;&lt;/a&gt; Disallow shard key pattern with fields that have parts that start with &apos;$&apos;&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/71372698d18785a374aa09bdd646d3c5dc2f227a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/71372698d18785a374aa09bdd646d3c5dc2f227a&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10420">
                    <name>Backports</name>
                                            <outwardlinks description="backported by">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10520">
                    <name>Problem/Incident</name>
                                            <outwardlinks description="causes">
                                        <issuelink>
            <issuekey id="2335962">SERVER-76948</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="2344102">SERVER-77255</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="626268">SERVER-37803</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>11.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_12450" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Backport Requested</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="25376"><![CDATA[v6.3]]></customfieldvalue>
    <customfieldvalue key="23470"><![CDATA[v6.0]]></customfieldvalue>
    <customfieldvalue key="21777"><![CDATA[v5.0]]></customfieldvalue>
    <customfieldvalue key="18953"><![CDATA[v4.4]]></customfieldvalue>
    <customfieldvalue key="16775"><![CDATA[v4.2]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 21 Feb 2023 17:30:30 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        48 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_17050" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Downstream Team Attention</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="16941"><![CDATA[Not Needed]]></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>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            48 weeks, 2 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10026"><![CDATA[ALL]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>cheahuychou.mao@mongodb.com</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i1wetr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|i1eu7s:</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_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_22250" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Special Downgrade Instructions Required</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="23343"><![CDATA[Not Needed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="6868">Sharding NYC 2023-03-06</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_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i1w0z3:</customfieldvalue>

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