<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 02:57:30 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-1606] Oplog entries contain repeated fields ($set)</title>
                <link>https://jira.mongodb.org/browse/SERVER-1606</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;if a change occurs we need to be careful about backward compatibility / mixing of versions with replication, which is common.&lt;/p&gt;

&lt;p&gt;Jason Toffaletti to mongodb-user&lt;br/&gt;
show details 4:42 AM (4 hours ago)&lt;br/&gt;
I started up a mongod v1.4.4 with --master and ran some multi-field&lt;br/&gt;
updates like this from mongo shell:&lt;/p&gt;

&lt;p&gt;&amp;gt; db.test2.update(&lt;/p&gt;
{thing:&apos;stuff&apos;}
&lt;p&gt;, {$set:&lt;/p&gt;
{stuff:14}
&lt;p&gt;, $inc:{version:1}})&lt;/p&gt;

&lt;p&gt;While doing this I have a pymongo 1.5.1 script running a tailable&lt;br/&gt;
cursor on local.oplog.$main, printing out results:&lt;/p&gt;

&lt;p&gt;update {u&apos;o2&apos;: &lt;/p&gt;
{u&apos;_id&apos;: ObjectId(&apos;4c610b301a632ffb5161c3e8&apos;)}
&lt;p&gt;, u&apos;ns&apos;:&lt;br/&gt;
u&apos;test.test2&apos;, u&apos;ts&apos;: Timestamp(1281428434, 1), u&apos;o&apos;: {u&apos;$set&apos;:&lt;br/&gt;
{u&apos;version&apos;: 2.0}}, u&apos;op&apos;: u&apos;u&apos;}&lt;br/&gt;
update {u&apos;o2&apos;: &lt;/p&gt;
{u&apos;_id&apos;: ObjectId(&apos;4c610b301a632ffb5161c3e8&apos;)}
&lt;p&gt;, u&apos;ns&apos;:&lt;br/&gt;
u&apos;test.test2&apos;, u&apos;ts&apos;: Timestamp(1281428450, 1), u&apos;o&apos;: {u&apos;$set&apos;:&lt;br/&gt;
{u&apos;version&apos;: 3.0}}, u&apos;op&apos;: u&apos;u&apos;}&lt;br/&gt;
update {u&apos;o2&apos;: &lt;/p&gt;
{u&apos;_id&apos;: ObjectId(&apos;4c610b301a632ffb5161c3e8&apos;)}
&lt;p&gt;, u&apos;ns&apos;:&lt;br/&gt;
u&apos;test.test2&apos;, u&apos;ts&apos;: Timestamp(1281428586, 1), u&apos;o&apos;: {u&apos;$set&apos;:&lt;br/&gt;
{u&apos;version&apos;: 4.0}}, u&apos;op&apos;: u&apos;u&apos;}&lt;/p&gt;

&lt;p&gt;This is strange, the &quot;o&quot; field only shows the update to version. What&lt;br/&gt;
does mongo shell show?&lt;/p&gt;

&lt;p&gt;&amp;gt; db&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;#39;oplog.$main&amp;#39;&amp;#93;&lt;/span&gt;.find(&lt;/p&gt;
{op:&quot;u&quot;}
&lt;p&gt;)&lt;br/&gt;
{ &quot;ts&quot; : &lt;/p&gt;
{ &quot;t&quot; : 1281428434000, &quot;i&quot; : 1 }
&lt;p&gt;, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; :&lt;br/&gt;
&quot;test.test2&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4c610b301a632ffb5161c3e8&quot;) }
&lt;p&gt;,&lt;br/&gt;
&quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;stuff&quot; : 1 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;stuff&quot; : 1 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : &lt;/p&gt;
{ &quot;t&quot; : 1281428450000, &quot;i&quot; : 1 }
&lt;p&gt;, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; :&lt;br/&gt;
&quot;test.test2&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4c610b301a632ffb5161c3e8&quot;) }
&lt;p&gt;,&lt;br/&gt;
&quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;stuff&quot; : 1346 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;stuff&quot; : 1346 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : &lt;/p&gt;
{ &quot;t&quot; : 1281428586000, &quot;i&quot; : 1 }
&lt;p&gt;, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; :&lt;br/&gt;
&quot;test.test2&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : ObjectId(&quot;4c610b301a632ffb5161c3e8&quot;) }
&lt;p&gt;,&lt;br/&gt;
&quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;stuff&quot; : 14 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;stuff&quot; : 14 }
&lt;p&gt; } }&lt;/p&gt;

&lt;p&gt;Wait, what? This doesn&apos;t have the version update, but shows the $set&lt;br/&gt;
twice. I know mongod replication works, so I must be doing something&lt;br/&gt;
wrong?&lt;/p&gt;</description>
                <environment></environment>
        <key id="12738">SERVER-1606</key>
            <summary>Oplog entries contain repeated fields ($set)</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="2" iconUrl="https://jira.mongodb.org/images/icons/priorities/critical.svg">Critical - P2</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="eliot">Eliot Horowitz</assignee>
                                    <reporter username="dwight@mongodb.com">Dwight Merriman</reporter>
                        <labels>
                    </labels>
                <created>Tue, 10 Aug 2010 12:56:50 +0000</created>
                <updated>Tue, 12 Jul 2016 00:20:24 +0000</updated>
                            <resolved>Mon, 28 Jan 2013 15:57:59 +0000</resolved>
                                                    <fixVersion>2.2.4</fixVersion>
                    <fixVersion>2.4.0-rc0</fixVersion>
                                    <component>Replication</component>
                                        <votes>2</votes>
                                    <watches>10</watches>
                                                                                                                <comments>
                            <comment id="294741" author="ralph.su" created="Thu, 21 Mar 2013 10:11:32 +0000"  >&lt;p&gt;Thanks for quick response , Eliot.&lt;/p&gt;

&lt;p&gt;Re-check the v2.4.0 release, confirm fixed. My bad to have v2.2 mongo in path, then try typing mongod instead of ./mongod &lt;br/&gt;
to start a v2.4.0 server(which actually a v.2.2.0 server started)....  &lt;/p&gt;

&lt;p&gt;Many thanks.&lt;/p&gt;</comment>
                            <comment id="294623" author="eliot" created="Thu, 21 Mar 2013 05:45:24 +0000"  >&lt;p&gt;Its fixed in 2.4.0, but its fixed in the replication code.&lt;br/&gt;
So new entries to the oplog only have 1 $set field.&lt;br/&gt;
So any driver that uses a map will work.&lt;/p&gt;</comment>
                            <comment id="294613" author="ralph.su" created="Thu, 21 Mar 2013 05:18:49 +0000"  >&lt;p&gt;I&apos;m encounting the same issue on v2.2. As this bug is closed with fix version 2.2.4(don&apos;t find the release on download page through) and v2.4.0.&lt;/p&gt;

&lt;p&gt;I did try the offcial v2.4.0 on my unbuntu, still see the same thing&lt;br/&gt;
 &amp;gt; using mongo shell to query oplog.rs collection would see some incorrect $set (all the same). An &quot;o&quot; payload looks below which help nothing on log tracing.&lt;br/&gt;
	&quot;o&quot; : {&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		},&lt;br/&gt;
		&quot;$set&quot; : {&lt;br/&gt;
			&quot;AI&quot; : &lt;/p&gt;
{
				&quot;v&quot; : &quot;app&quot;,
				&quot;t&quot; : ISODate(&quot;2013-03-21T04:18:51.099Z&quot;),
				&quot;c&quot; : null
			}
&lt;p&gt;		}&lt;br/&gt;
	}&lt;br/&gt;
  &amp;gt; By mongodump and local database, and use bsondump, i see something like below, which is much better.&lt;br/&gt;
    &quot;$set&quot;: &lt;/p&gt;
{
        &quot;_b&quot;: &quot;main&quot;
    }
&lt;p&gt;,&lt;br/&gt;
    &quot;$set&quot;: &lt;/p&gt;
{
        &quot;_i&quot;: &quot;4fbb314fc681caf13e283a76&quot;
    }
&lt;p&gt;,&lt;br/&gt;
    &quot;$set&quot;: &lt;/p&gt;
{
        &quot;_l&quot;: Date(1 363839531099)
    }
&lt;p&gt;,&lt;br/&gt;
    &quot;$set&quot;: &lt;/p&gt;
{
        &quot;_pv&quot;: -1
    }
&lt;p&gt;,&lt;/p&gt;

&lt;p&gt;Above two items seems to be exactly the same as &lt;a href=&quot;https://groups.google.com/forum/?fromgroups=#!topic/mongodb-user/eDPGj9nS6_A&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://groups.google.com/forum/?fromgroups=#!topic/mongodb-user/eDPGj9nS6_A&lt;/a&gt; mentioned.&lt;/p&gt;

&lt;p&gt;My question is:&lt;br/&gt;
1. Is this issued fixed v2.4.0 release as this jira case stated?&lt;br/&gt;
2. If the answer to item1 yes, what kind of the fix is taken? Server-side merge the dup-key &quot;$set&quot; in oplog. Or users need to get a better driver that support dup-key to able to read from oplog.rs?&lt;br/&gt;
3. Is there a plan to merge the dup-key in oplog in server side for future release?&lt;/p&gt;</comment>
                            <comment id="294474" author="auto" created="Thu, 21 Mar 2013 00:25:13 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2013-01-28T15:55:04Z&apos;, u&apos;name&apos;: u&apos;Eliot Horowitz&apos;, u&apos;email&apos;: u&apos;eliot@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-1606&quot; title=&quot;Oplog entries contain repeated fields ($set)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-1606&quot;&gt;&lt;del&gt;SERVER-1606&lt;/del&gt;&lt;/a&gt;: don&apos;t duplicate update names&lt;/p&gt;

&lt;p&gt;Conflicts:&lt;/p&gt;

&lt;p&gt;	src/mongo/dbtests/updatetests.cpp&lt;br/&gt;
Branch: v2.2&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/679219a64948a9702c639d2a3bdbd20b6be68723&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/679219a64948a9702c639d2a3bdbd20b6be68723&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="251819" author="auto" created="Mon, 28 Jan 2013 15:58:01 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2013-01-28T15:55:04Z&apos;, u&apos;email&apos;: u&apos;eliot@10gen.com&apos;, u&apos;name&apos;: u&apos;Eliot Horowitz&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-1606&quot; title=&quot;Oplog entries contain repeated fields ($set)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-1606&quot;&gt;&lt;del&gt;SERVER-1606&lt;/del&gt;&lt;/a&gt;: don&apos;t duplicate update names&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/07861f5341d4a8e95cc23037b6f245ca8b9110b5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/07861f5341d4a8e95cc23037b6f245ca8b9110b5&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="225245" author="scotthernandez" created="Thu, 27 Dec 2012 12:36:15 +0000"  >&lt;p&gt;This is becoming more of a critical issues since 2.2.1 where there were other replication changes which seems to have increased the likelihood of this occurring.&lt;/p&gt;</comment>
                            <comment id="160474" author="vasmik" created="Wed, 5 Sep 2012 09:25:47 +0000"  >&lt;p&gt;The better way to resolve this problem is combine all $set operations to one.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;{$set:&lt;/p&gt;
{stuff:14}
&lt;p&gt;, $inc:{version:1}}&lt;/p&gt;

&lt;p&gt;Will be looks like {$set:&lt;/p&gt;
{version:1}
&lt;p&gt;, $set:{version:1}} in oplog.&lt;/p&gt;

&lt;p&gt;But it should looks like {$set:{stuff:14, version:1}}&lt;/p&gt;

&lt;p&gt;Will you fix this bug in closest time?&lt;/p&gt;</comment>
                            <comment id="117486" author="schwerin" created="Tue, 8 May 2012 21:51:08 +0000"  >&lt;p&gt;Scott requests backport to 2.0.6.&lt;/p&gt;</comment>
                            <comment id="46024" author="chip" created="Wed, 3 Aug 2011 04:37:42 +0000"  >&lt;p&gt;So ... any thoughts/progress on this?&lt;/p&gt;</comment>
                            <comment id="16693" author="toffaletti" created="Tue, 10 Aug 2010 22:11:17 +0000"  >&lt;p&gt;Ahh, I think I understand what is going on now. The client libraries are using map data-types that don&apos;t properly support different elements having the same key ($set).&lt;/p&gt;

&lt;p&gt;Two solutions come to mind:&lt;/p&gt;

&lt;p&gt;1) All clients are modified to support STL multimap-like semantics for BSON/JSON Object type. This seems like it would break a lot of client code that is expecting:&lt;/p&gt;

&lt;p&gt;o&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;quot;this&amp;quot;&amp;#93;&lt;/span&gt; = 1&lt;br/&gt;
o&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;quot;this&amp;quot;&amp;#93;&lt;/span&gt; = 2&lt;/p&gt;

&lt;p&gt;to result in &lt;/p&gt;
{&quot;this&quot;:2}
&lt;p&gt; not &lt;/p&gt;
{&quot;this&quot;:1, &quot;this&quot;:2}
&lt;p&gt;.&lt;/p&gt;

&lt;p&gt;An alternative would be to introduce a new multimap type. That is returned if the BSON contains two matching keys, and can be used to create this type of BSON.&lt;/p&gt;

&lt;p&gt;2) The format of the oplog can change, for example something like this might work:&lt;/p&gt;

&lt;p&gt;{&quot;o&quot;:&lt;span class=&quot;error&quot;&gt;&amp;#91;{_id: ObjectId(&amp;quot;4c610b301a632ffb5161c3e8&amp;quot;)}, {$set: { &amp;quot;stuff&amp;quot; : 1346 }}, {$set: {&amp;quot;version&amp;quot;:3.0}}&amp;#93;&lt;/span&gt;, ....}&lt;/p&gt;

&lt;p&gt;This could potentially break backwards compatibility for newer mongod versions being replicated to older slave versions.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                                                <inwardlinks description="is depended on by">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="58657">SERVER-7871</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="60108">DOCS-923</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="65632">SERVER-8605</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="58657">SERVER-7871</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="81851">SERVER-10162</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="11455">SERVER-718</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="43910">SERVER-6399</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>10.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 10 Aug 2010 22:11:17 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        10 years, 47 weeks, 6 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_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>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            10 years, 47 weeks, 6 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>schwerin@mongodb.com</customfieldvalue>
            <customfieldvalue>auto</customfieldvalue>
            <customfieldvalue>chip</customfieldvalue>
            <customfieldvalue>dwight@mongodb.com</customfieldvalue>
            <customfieldvalue>eliot</customfieldvalue>
            <customfieldvalue>toffaletti</customfieldvalue>
            <customfieldvalue>ralph.su</customfieldvalue>
            <customfieldvalue>scotthernandez</customfieldvalue>
            <customfieldvalue>vasmik</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrphfj:</customfieldvalue>

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

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

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