<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:00:29 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-2592] The fields in a document are reordered (sorted alphabetically) when setting a field value</title>
                <link>https://jira.mongodb.org/browse/SERVER-2592</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;The fields in a document are reordered when the size of the value stored in it changes (increases or decreases)&lt;/p&gt;

&lt;p&gt;Case 1: No change in size of field, so no change in field order&lt;br/&gt;
db.testcol.find() &lt;br/&gt;
db.testcol.save(&lt;/p&gt;
{a:1,c:3,b:2}
&lt;p&gt;) &lt;br/&gt;
db.testcol.find() &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4d5efc3bec5855af36834f5a&quot;), &quot;a&quot; : 1, &quot;c&quot; : 3, &quot;b&quot; : 2 } 
&lt;p&gt;db.testcol.update(&lt;/p&gt;
{a:1}
&lt;p&gt;,{$set:{c:22}}) &lt;br/&gt;
db.testcol.find() &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4d5efc3bec5855af36834f5a&quot;), &quot;a&quot; : 1, &quot;c&quot; : 22, &quot;b&quot; : 2 }

&lt;p&gt;Case 2: Field size changes and the fields are reodered&lt;br/&gt;
db.testcol.find() &lt;br/&gt;
db.testcol.save(&lt;/p&gt;
{a:1,c:&quot;foo&quot;,b:2,d:4}
&lt;p&gt;) &lt;br/&gt;
db.testcol.find() &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4d5efdceec5855af36834f5e&quot;), &quot;a&quot; : 1, &quot;c&quot; : &quot;foo&quot;, &quot;b&quot; : 2, &quot;d&quot; : 4 } 
&lt;p&gt;db.testcol.update(&lt;/p&gt;
{a:1}
&lt;p&gt;,{$set:{c:&quot;foobar&quot;}}) &lt;br/&gt;
db.testcol.find() &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4d5efdceec5855af36834f5e&quot;), &quot;a&quot; : 1, &quot;b&quot; : 2, &quot;c&quot; : &quot;foobar&quot;, &quot;d&quot; : 4 }

&lt;p&gt;Case 3: Field size changes and the fields are reordered. Note : the _id field is moved to the last field on the node&lt;br/&gt;
&amp;gt; db.testcol.find()&lt;br/&gt;
&amp;gt; db.testcol.save(&lt;/p&gt;
{A:1,C:&quot;foo&quot;,B:2,D:4}
&lt;p&gt;)&lt;br/&gt;
&amp;gt; db.testcol.find()&lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4d5f16ceec5855af36834f60&quot;), &quot;A&quot; : 1, &quot;C&quot; : &quot;foo&quot;, &quot;B&quot; : 2, &quot;D&quot; : 4 }
&lt;p&gt;&amp;gt; db.testcol.update(&lt;/p&gt;
{A:1}
&lt;p&gt;,{$set:{C:&quot;f&quot;}})&lt;br/&gt;
&amp;gt; db.testcol.find()&lt;/p&gt;
{ &quot;A&quot; : 1, &quot;B&quot; : 2, &quot;C&quot; : &quot;f&quot;, &quot;D&quot; : 4, &quot;_id&quot; : ObjectId(&quot;4d5f16ceec5855af36834f60&quot;) }</description>
                <environment>OS X. 1.8.0_rc0</environment>
        <key id="14816">SERVER-2592</key>
            <summary>The fields in a document are reordered (sorted alphabetically) when setting a field value</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="9">Done</resolution>
                                        <assignee username="andrew.morrow@mongodb.com">Andrew Morrow</assignee>
                                    <reporter username="sridhar">Sridhar Nanjundeswaran</reporter>
                        <labels>
                    </labels>
                <created>Sat, 19 Feb 2011 01:05:40 +0000</created>
                <updated>Mon, 1 May 2023 00:39:32 +0000</updated>
                            <resolved>Wed, 14 Aug 2013 21:49:45 +0000</resolved>
                                    <version>1.8.0-rc0</version>
                                    <fixVersion>2.5.2</fixVersion>
                                    <component>Write Ops</component>
                                        <votes>7</votes>
                                    <watches>12</watches>
                                                                                                                <comments>
                            <comment id="181993" author="dwight_10gen" created="Fri, 2 Nov 2012 17:55:28 +0000"  >&lt;p&gt;i&apos;d vote for maintaining order on updates, i find it nonintuitive and confusing when things move around.&lt;/p&gt;
&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;&amp;gt; db.bar.find()&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;{ &quot;_id&quot; : 123, &quot;x&quot; : 2, &quot;y&quot; : 4, &quot;z&quot; : 4 }&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;{ &quot;_id&quot; : 124, &quot;x&quot; : 1, &quot;y&quot; : 3, &quot;z&quot; : 2 }&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;&amp;gt; db.bar.update( {x:2 }, { $inc : { y:1,z : 2 }, $set : {q:3} }, false, true )&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;&amp;gt; db.bar.find()&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;{ &quot;_id&quot; : 124, &quot;x&quot; : 1, &quot;y&quot; : 3, &quot;z&quot; : 2 }&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;{ &quot;_id&quot; : 123, &quot;q&quot; : 3, &quot;x&quot; : 2, &quot;y&quot; : 5, &quot;z&quot; : 6 }&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;</comment>
                            <comment id="112939" author="arun" created="Tue, 24 Apr 2012 02:17:12 +0000"  >&lt;p&gt;More motivation for why this can be an issue: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5691&quot; title=&quot;Queries with nested collections fail after MongoDB reorders fields post-update&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5691&quot;&gt;&lt;del&gt;SERVER-5691&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="38197" author="scotthernandez" created="Sun, 19 Jun 2011 01:08:53 +0000"  >&lt;p&gt;It is just the fields at the level you are modifying.&lt;/p&gt;

&lt;p&gt;The _id field is not reordered like other embedded fields.&lt;/p&gt;

&lt;p&gt;&amp;gt; db.s2592.insert({_id:{b:1, a:1}})&lt;br/&gt;
&amp;gt; db.s2592.insert({_id:{a:1, b:1}})&lt;br/&gt;
&amp;gt; db.s2592.update({_id:{b:1, a:1}}, {$set:{v:1}})&lt;br/&gt;
&amp;gt; db.s2592.find()                                &lt;br/&gt;
{ &quot;_id&quot; : &lt;/p&gt;
{ &quot;a&quot; : 1, &quot;b&quot; : 1 }
&lt;p&gt; }&lt;br/&gt;
{ &quot;_id&quot; : &lt;/p&gt;
{ &quot;b&quot; : 1, &quot;a&quot; : 1 }
&lt;p&gt;, &quot;v&quot; : 1 }&lt;/p&gt;</comment>
                            <comment id="38196" author="thiloplanz" created="Sun, 19 Jun 2011 00:47:01 +0000"  >&lt;p&gt;Does this also happen to embedded documents when they themselves are not updated (i.e. just other parts of the document are modified)? Also, are there situations when this can happen even when the document is never updated (something like rebuilding databases, for example). I am asking because I am using embedded documents as _id fields and range queries against those (as I was advised on the mailing list that this would work), so field reordering on the _id document would be really bad. I am, however, never updating the _id field itself (and usually not even the document at all). So can I still hope to not be affected by this issue? &lt;/p&gt;</comment>
                            <comment id="28498" author="stjo" created="Sat, 9 Apr 2011 15:46:59 +0000"  >&lt;p&gt;// My problem is the same... &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.mongodb.org/images/icons/emoticons/sad.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;

&lt;p&gt;// First create a record&lt;br/&gt;
db.sample.save({_id:1, last:&quot;jones&quot;, first:&quot;steve&quot;}); // lastname, then firstname...&lt;br/&gt;
db.sample.find();&lt;/p&gt;
{ &quot;_id&quot; : 1, &quot;last&quot; : &quot;jones&quot;, &quot;first&quot; : &quot;steve&quot; }
&lt;p&gt;// Correct&lt;/p&gt;

&lt;p&gt;// Then add a field with &quot;$set&quot;&lt;br/&gt;
db.sample.update({_id:1}, {$set:{country:&quot;france&quot;}});&lt;br/&gt;
db.sample.find();&lt;/p&gt;
{ &quot;_id&quot; : 1, &quot;country&quot; : &quot;france&quot;, &quot;first&quot; : &quot;steve&quot;, &quot;last&quot; : &quot;jones&quot; }
&lt;p&gt;// Bad : all fields are resorted...&lt;/p&gt;

&lt;p&gt;// I hope an option will be available soon for &quot;$set&quot; such as &quot;end&quot;,&quot;begin&quot; or &quot;after&quot; such as :&lt;br/&gt;
db.sample.update({_id:1}, {$set:{country:&quot;france&quot;, $option:&quot;end&quot;}});&lt;br/&gt;
db.sample.find();&lt;/p&gt;
{ &quot;_id&quot; : 1, &quot;last&quot; : &quot;jones&quot;, &quot;first&quot; : &quot;steve&quot;, &quot;country&quot; : &quot;france&quot; }</comment>
                            <comment id="24298" author="scotthernandez" created="Sat, 19 Feb 2011 21:40:39 +0000"  >&lt;p&gt;I&apos;ve updated the docs: &lt;a href=&quot;http://www.mongodb.org/display/DOCS/Updating#Updating-Field%28re%29order&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.mongodb.org/display/DOCS/Updating#Updating-Field%28re%29order&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="24291" author="scotthernandez" created="Sat, 19 Feb 2011 20:38:47 +0000"  >&lt;p&gt;Here is the example when a unique index exists on an embedded document and a re-order breaks things.&lt;/p&gt;

&lt;p&gt;&amp;gt; db.test1.ensureIndex(&lt;/p&gt;
{a:1}
&lt;p&gt;, &lt;/p&gt;
{unique:true}
&lt;p&gt;)&lt;br/&gt;
&amp;gt; db.test1.save({_id:1, b:2, c:3, a:{a:2, b:1}}&lt;br/&gt;
&amp;gt; db.test1.update({}, {$set:{&quot;a.c&quot;: 3}}, true, true)&lt;br/&gt;
E11001 duplicate key on update&lt;/p&gt;</comment>
                            <comment id="24285" author="scotthernandez" created="Sat, 19 Feb 2011 20:00:16 +0000"  >&lt;p&gt;Yes, when range queries are applied to an embedded doc for one.&lt;/p&gt;

&lt;p&gt;&amp;gt; db.test1.save({_id:&lt;/p&gt;
{b:1, a:2}
&lt;p&gt;, b:2, c:3, a:{b:1, a:2}}&lt;br/&gt;
&amp;gt; db.test1.find({a:{$gte : &lt;/p&gt;
{b:1, a:2}
&lt;p&gt;}})&lt;br/&gt;
{ &quot;_id&quot; : &lt;/p&gt;
{ &quot;b&quot; : 1, &quot;a&quot; : 2 }
&lt;p&gt;, &quot;b&quot; : 2, &quot;c&quot; : 3, &quot;a&quot; : &lt;/p&gt;
{ &quot;b&quot; : 1, &quot;a&quot; : 2 }
&lt;p&gt; }&lt;br/&gt;
&amp;gt; db.test1.update({}, {$set:{&quot;a.c&quot;: 3}}, true, true)&lt;br/&gt;
&amp;gt; db.test1.find({a:{$gte : &lt;/p&gt;
{b:1, a:2}
&lt;p&gt;}}) &lt;br/&gt;
&amp;gt; db.test1.findOne()&lt;br/&gt;
{&lt;br/&gt;
        &quot;_id&quot; : &lt;/p&gt;
{
                &quot;b&quot; : 1,
                &quot;a&quot; : 2
        }
&lt;p&gt;,&lt;br/&gt;
        &quot;a&quot; : &lt;/p&gt;
{
                &quot;a&quot; : 2,
                &quot;b&quot; : 1,
                &quot;c&quot; : 3
        }
&lt;p&gt;,&lt;br/&gt;
        &quot;b&quot; : 2,&lt;br/&gt;
        &quot;c&quot; : 3&lt;br/&gt;
}&lt;br/&gt;
If you try to live by having the least number of surprises then this fails. I know why the _id field is not reordered, but what about other unique index fields which are on embedded docs? &lt;/p&gt;</comment>
                            <comment id="24274" author="eliot" created="Sat, 19 Feb 2011 01:37:17 +0000"  >&lt;p&gt;This is intentional.&lt;br/&gt;
Is there a case where this is an issue?&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                            <outwardlinks description="depends on">
                                        <issuelink>
            <issuekey id="43910">SERVER-6399</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="106781">SERVER-12412</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="2328610">SERVER-76705</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="16296">SERVER-2991</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="21530">DOCS-50</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>9.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Sat, 19 Feb 2011 01:37:17 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        11 years, 15 weeks, 5 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[<s><a href='https://jira.mongodb.org/browse/SERVER-6399'>SERVER-6399</a></s>]]></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_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>mdfisher4@wisc.edu</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            11 years, 15 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Old_Backport</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10000"><![CDATA[No]]></customfieldvalue>

                        </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>andrew.morrow@mongodb.com</customfieldvalue>
            <customfieldvalue>arun</customfieldvalue>
            <customfieldvalue>dwight@mongodb.com</customfieldvalue>
            <customfieldvalue>eliot</customfieldvalue>
            <customfieldvalue>scotthernandez</customfieldvalue>
            <customfieldvalue>sridhar</customfieldvalue>
            <customfieldvalue>stjo</customfieldvalue>
            <customfieldvalue>thiloplanz</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrp5o7:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>20524</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_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|hszyof:</customfieldvalue>

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