<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 06:42:57 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-80203] Normalization of time-series meta field can break insert targeting</title>
                <link>https://jira.mongodb.org/browse/SERVER-80203</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;div class=&quot;panel&quot; style=&quot;background-color: #EEEEEE;border-color: #ccc;border-width: 1px;&quot;&gt;&lt;div class=&quot;panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-color: #ccc;background-color: #6CB33F;&quot;&gt;&lt;b&gt;Issue summary &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-80203&quot; title=&quot;Normalization of time-series meta field can break insert targeting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-80203&quot;&gt;&lt;del&gt;SERVER-80203&lt;/del&gt;&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;panelContent&quot; style=&quot;background-color: #EEEEEE;&quot;&gt;
&lt;p&gt;&lt;b&gt;Issue Summary&lt;/b&gt;&lt;br/&gt;
This is a time series sharded cluster operation routing issue which can result in metadata inconsistencies. Documents affected by this issue may be written to the wrong shard, such that it may not be returned by queries and may be subject to later deletion. &lt;/p&gt;

&lt;p&gt;This affects time series sharded collections starting in MongoDB version 5.0.6 through versions 5.0.21, 6.0.11 and 7.0.2 and Rapid Release version 7.1.1.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Issue Description and Impact&lt;/b&gt;&lt;br/&gt;
Documents inserted into a sharded Time Series collection may be routed to an incorrect shard and become un-owned by any shard if:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;The document&apos;s time series metaField contains an embedded document/object composed of multiple fields and the shard key of the collection includes that object. Examples include:
	&lt;ul&gt;
		&lt;li&gt;A metaField value of &lt;em&gt;{ &quot;a&quot; : 1, &quot;b&quot; : 1 }&lt;/em&gt; when the shard key is the metaField.&lt;/li&gt;
		&lt;li&gt;A metaField value of &lt;em&gt;{ &quot;a&quot; : 1, &quot;b&quot; : {&quot;c&quot;: 1, &quot;d&quot;: 1} }&lt;/em&gt; when the shard key includes &lt;tt&gt;metaField.b&lt;/tt&gt;.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;At insert time, the fields in the embedded document or object are not provided in alphabetic (lexicographic) order. Importantly, app-supplied key order within documents is not guaranteed by all drivers.
	&lt;ul&gt;
		&lt;li&gt;The same shard does not own the two chunks that own both:&lt;/li&gt;
		&lt;li&gt;The alphabetically (lexicographically) ordered version of the embedded document&lt;/li&gt;
		&lt;li&gt;The provided version of the embedded document.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;This occurs because:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;A mongos routers incorrectly route documents to shards using the provided metaField value. For example, &lt;em&gt;{ &quot;b&quot; : 1, &quot;a&quot; : 1 }&lt;/em&gt; is routed to the shard that owns the chunk range for &lt;em&gt;{ &quot;b&quot; : 1, &quot;a&quot; : 1 }&lt;/em&gt;.&lt;/li&gt;
	&lt;li&gt;At insert time, mongod nodes normalize to alphabetic/lexicographic order the metaField values that are embedded documents. For example, &lt;em&gt;{ &quot;b&quot; : 1, &quot;a&quot; : 1 }&lt;/em&gt;, becomes &lt;em&gt;{ &quot;a&quot; : 1, &quot;b&quot; : 1 }&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;When the shard that receives a vulnerable document does not own the chunk range for the normalized form of the shard key / metaField value, the document is &lt;a href=&quot;https://www.mongodb.com/docs/manual/reference/glossary/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;orphaned&lt;/a&gt; and effectively lost. For example - a shard which has the chunk range &lt;em&gt;{ &quot;b&quot; : 1 }&lt;/em&gt; &#8594; &lt;em&gt;{ &quot;$maxKey&quot; : 1 }&lt;/em&gt; could receive the document with metaField &lt;em&gt;{ &quot;b&quot; : 1, &quot;a&quot; : 1 }&lt;/em&gt; even though the document is persisted with the metaField &lt;em&gt;{ &quot;a&quot; : 1, &quot;b&quot; : 1 }&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Note that when the correct chunk range and &quot;incorrect&quot; chunk range are owned by the same shard, this issue is self-healing.&lt;/p&gt;

&lt;p&gt;Documents orphaned in this way:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;Will not be returned by queries issued through a mongos.&lt;/li&gt;
	&lt;li&gt;May be deleted under the following circumstances:
	&lt;ul&gt;
		&lt;li&gt;Orphaned documents are normalized in such a way that they fall into a chunk range with a &lt;a href=&quot;https://www.mongodb.com/docs/v7.0/core/sharding-balancer-administration/#std-label-chunk-migration-queuing&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;pending chunk deletion task&lt;/a&gt;.&lt;/li&gt;
		&lt;li&gt;A chunk migration to a destination shard containing orphans in the given range is aborted, resulting in the creation of a &lt;a href=&quot;https://www.mongodb.com/docs/v7.0/core/sharding-balancer-administration/#std-label-chunk-migration-queuing&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;chunk deletion&lt;/a&gt; task over the chunk range in which the orphaned documents exist.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;Workaround&lt;/b&gt; &lt;/p&gt;

&lt;p&gt;Upgrading to MongoDB versions &lt;b&gt;5.0.22&lt;/b&gt;, &lt;b&gt;6.0.12&lt;/b&gt;, or &lt;b&gt;7.0.3&lt;/b&gt; prevents the issue from occurring, but remediation is still required. See the &lt;b&gt;Remediation&lt;/b&gt; section below for further guidance.&lt;/p&gt;

&lt;p&gt;Please reach out to &lt;a href=&quot;https://www.mongodb.com/support&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;MongoDB Support&lt;/a&gt; if you are unable to upgrade to a version containing a fix for this issue. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;Remediation&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;We recommend taking the following actions, in order, to identify and preserve orphaned documents for later recovery. Please review all steps carefully before proceeding. &lt;/p&gt;

&lt;ol&gt;
	&lt;li&gt;Disable the balancer using &lt;a href=&quot;https://www.mongodb.com/docs/manual/reference/method/sh.stopBalancer/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;sh.stopBalancer()&lt;/a&gt;.&lt;/li&gt;
	&lt;li&gt;Upgrade the cluster to the latest maintenance release (See the &lt;a href=&quot;https://www.mongodb.com/docs/v7.0/release-notes/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Release Notes&lt;/a&gt; for information on the latest versions).&lt;/li&gt;
	&lt;li&gt;Follow the guidance at &lt;a href=&quot;https://github.com/mongodb/support-tools/tree/master/sharded-timeseries-orphan-check&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;MongoDB Support Tools - Sharded Time Series Orphan Check&lt;/a&gt; to identify and recover orphaned time series documents.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Please reach out to &lt;a href=&quot;https://www.mongodb.com/support&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;MongoDB Support&lt;/a&gt; if you have any questions or issues with performing the steps above.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Documentation&lt;/b&gt;&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://www.mongodb.com/docs/manual/reference/method/db.createCollection/#create-a-time-series-collection&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Time Series Collections&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://www.mongodb.com/docs/manual/core/sharding-shard-key/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Shard Key&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://www.mongodb.com/docs/manual/core/sharding-data-partitioning/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Chunk Range&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;https://www.mongodb.com/docs/manual/reference/glossary/#std-term-orphaned-document&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Orphaned Document&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="2420098">SERVER-80203</key>
            <summary>Normalization of time-series meta field can break insert targeting</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="gregory.noma@mongodb.com">Gregory Noma</assignee>
                                    <reporter username="arun.banala@mongodb.com">Arun Banala</reporter>
                        <labels>
                    </labels>
                <created>Thu, 17 Aug 2023 16:43:46 +0000</created>
                <updated>Mon, 4 Dec 2023 18:21:33 +0000</updated>
                            <resolved>Thu, 28 Sep 2023 14:59:43 +0000</resolved>
                                                    <fixVersion>7.1.1</fixVersion>
                    <fixVersion>7.2.0-rc0</fixVersion>
                    <fixVersion>5.0.22</fixVersion>
                    <fixVersion>7.0.3</fixVersion>
                    <fixVersion>6.0.12</fixVersion>
                                                        <votes>0</votes>
                                    <watches>28</watches>
                                                                                                                <comments>
                            <comment id="5781051" author="xgen-internal-githook" created="Mon, 16 Oct 2023 13:45:05 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Gregory Noma&apos;, &apos;email&apos;: &apos;gregory.noma@gmail.com&apos;, &apos;username&apos;: &apos;gregorynoma&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-80203&quot; title=&quot;Normalization of time-series meta field can break insert targeting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-80203&quot;&gt;&lt;del&gt;SERVER-80203&lt;/del&gt;&lt;/a&gt; Normalize metadata for time-series insert targeting&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 1a77b9c2182a01870262fac6b9e4c6df2dc05fa5)&lt;br/&gt;
Branch: v7.1&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/a24f8791f900c6d2dad5425930f45e3341f067a9&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/a24f8791f900c6d2dad5425930f45e3341f067a9&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5753732" author="xgen-internal-githook" created="Wed, 4 Oct 2023 21:10:35 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Gregory Noma&apos;, &apos;email&apos;: &apos;gregory.noma@gmail.com&apos;, &apos;username&apos;: &apos;gregorynoma&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-80203&quot; title=&quot;Normalization of time-series meta field can break insert targeting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-80203&quot;&gt;&lt;del&gt;SERVER-80203&lt;/del&gt;&lt;/a&gt; Normalize metadata for time-series insert targeting&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 48ce9d9b4cc7c623cc1f4a67db300ca7d3c800a5)&lt;br/&gt;
Branch: v5.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/9cb9725acb96fcb5e5f1f7f42f0030bd8d654286&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/9cb9725acb96fcb5e5f1f7f42f0030bd8d654286&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5750179" author="xgen-internal-githook" created="Tue, 3 Oct 2023 21:07:13 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Gregory Noma&apos;, &apos;email&apos;: &apos;gregory.noma@gmail.com&apos;, &apos;username&apos;: &apos;gregorynoma&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-80203&quot; title=&quot;Normalization of time-series meta field can break insert targeting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-80203&quot;&gt;&lt;del&gt;SERVER-80203&lt;/del&gt;&lt;/a&gt; Normalize metadata for time-series insert targeting&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/48ce9d9b4cc7c623cc1f4a67db300ca7d3c800a5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/48ce9d9b4cc7c623cc1f4a67db300ca7d3c800a5&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5746035" author="JIRAUSER1274113" created="Mon, 2 Oct 2023 17:24:30 +0000"  >&lt;p&gt;The release team discussed this issue and based on it we decided not to block 7.1.0 with this ticket. This change must be backported to 7.0 (done in BACKPORT-16944), and we recommend to backport this change to 7.1.1 if we have to release one.&lt;/p&gt;</comment>
                            <comment id="5745242" author="xgen-internal-githook" created="Mon, 2 Oct 2023 14:11:42 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Gregory Noma&apos;, &apos;email&apos;: &apos;gregory.noma@gmail.com&apos;, &apos;username&apos;: &apos;gregorynoma&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-80203&quot; title=&quot;Normalization of time-series meta field can break insert targeting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-80203&quot;&gt;&lt;del&gt;SERVER-80203&lt;/del&gt;&lt;/a&gt; Normalize metadata for time-series insert targeting&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 1a77b9c2182a01870262fac6b9e4c6df2dc05fa5)&lt;br/&gt;
Branch: v7.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/26a9f2f4b1ff19cc5bceeee172f8ea452bc83f00&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/26a9f2f4b1ff19cc5bceeee172f8ea452bc83f00&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5737760" author="xgen-internal-githook" created="Thu, 28 Sep 2023 14:58:50 +0000"  >&lt;p&gt;Author: &lt;/p&gt;
{&apos;name&apos;: &apos;Gregory Noma&apos;, &apos;email&apos;: &apos;gregory.noma@gmail.com&apos;, &apos;username&apos;: &apos;gregorynoma&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-80203&quot; title=&quot;Normalization of time-series meta field can break insert targeting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-80203&quot;&gt;&lt;del&gt;SERVER-80203&lt;/del&gt;&lt;/a&gt; Normalize metadata for time-series insert targeting&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/1a77b9c2182a01870262fac6b9e4c6df2dc05fa5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/1a77b9c2182a01870262fac6b9e4c6df2dc05fa5&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="5680645" author="JIRAUSER1274113" created="Tue, 5 Sep 2023 17:50:12 +0000"  >&lt;p&gt;Downgrading to P3 to mark this one as a non-blocking ticket for the releases.&lt;/p&gt;</comment>
                            <comment id="5673303" author="JIRAUSER1274113" created="Thu, 31 Aug 2023 21:02:45 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=britt.snyman%40mongodb.com&quot; class=&quot;user-hover&quot; rel=&quot;britt.snyman@mongodb.com&quot;&gt;britt.snyman@mongodb.com&lt;/a&gt; confirmed that this is not a blocker for MongoDB 5.0.21-rc0&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">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                                        </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="2453621">SERVER-81523</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="2515788">SERVER-83855</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="1548083">SERVER-52967</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="1657848">SERVER-55484</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="1628505">SERVER-54647</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="2053167">SERVER-66685</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>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_12751" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
                        <customfieldname>Assigned Teams</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="26007"><![CDATA[Storage Execution NAMER]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12450" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Backport Requested</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="26243"><![CDATA[v7.1]]></customfieldvalue>
    <customfieldvalue key="25578"><![CDATA[v7.0]]></customfieldvalue>
    <customfieldvalue key="23470"><![CDATA[v6.0]]></customfieldvalue>
    <customfieldvalue key="21777"><![CDATA[v5.0]]></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_13552" key="com.go2group.jira.plugin.crm:crm_generic_field">
                        <customfieldname>Case</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[[5006R00001veA2vQAE]]]></customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        16 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>gregory.noma@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            16 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>arun.banala@mongodb.com</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>gregory.noma@mongodb.com</customfieldvalue>
            <customfieldvalue>maria.prinus@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i2mr9b:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|i0j9lt:6</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_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="7560">Execution NAMR Team 2023-09-18</customfieldvalue>
    <customfieldvalue id="7561">Execution NAMR Team 2023-10-02</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|i2mden:</customfieldvalue>

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