<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:09:08 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-5520] Shutdown rewrite (tracking ticket)</title>
                <link>https://jira.mongodb.org/browse/SERVER-5520</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;This ticket is the dual of &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5112&quot; title=&quot;Need a better story for startup-time initialization of C++ modules.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5112&quot;&gt;&lt;del&gt;SERVER-5112&lt;/del&gt;&lt;/a&gt;.  The result of &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5112&quot; title=&quot;Need a better story for startup-time initialization of C++ modules.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5112&quot;&gt;&lt;del&gt;SERVER-5112&lt;/del&gt;&lt;/a&gt; is that the server has a very explicit initialization system that ensures a well defined initialization order.  Each subsystem can define its own startup code, and specify exactly what it depends on and what depends on it.  In particular, this solved the &quot;static initialization order&quot; issue, in which constructors for statically defined classes run in an undefined order at before main() gets called.&lt;/p&gt;

&lt;p&gt;The shutdown process needs similar attention.  There is some &quot;shutdown&quot; code that needs to be run when the server is shutting down.  However, this code is often run implicitly in destructors, or is lumped all together with process exit.&lt;/p&gt;

&lt;p&gt;To start, we have duplicated definitions of the &quot;dbexit&quot; function, which is the entry point to the shutdown system.&lt;/p&gt;

&lt;p&gt;One for mongos:&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/blob/master/src/mongo/s/server.cpp#L448&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blob/master/src/mongo/s/server.cpp#L448&lt;/a&gt;&lt;br/&gt;
And one for mongod:&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/blob/master/src/mongo/db/instance.cpp#L1135&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blob/master/src/mongo/db/instance.cpp#L1135&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This function is the entry to point to the current shutdown process in the server.  The fact that these signatures are identical (and used from some libraries that both mongod and mongos share) and have diverged shows that the shutdown process has not been properly factored out.  &quot;server.cpp&quot; is the main() for mongos, and &quot;instance.cpp&quot; is a legacy file with old file and process related code.&lt;/p&gt;

&lt;p&gt;There is also an &quot;inShutdown&quot; function, of which there are also multiple definitions:&lt;/p&gt;

&lt;p&gt;mongod:&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/blob/master/src/mongo/db/instance.cpp#L1135&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blob/master/src/mongo/db/instance.cpp#L1135&lt;/a&gt;&lt;br/&gt;
mongos:&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/blob/master/src/mongo/s/server.cpp#L103&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blob/master/src/mongo/s/server.cpp#L103&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This function is effectively in place as a way to notify other parts of the server that we are shutting down.  However, this function is not thread safe, and it is not clear when this call is needed.  This could potentially be replaced by some more explicit notification of the various components that need to be notified of shutdown.&lt;/p&gt;

&lt;p&gt;Finally, the &quot;dbexit&quot; call, in addition to shutting down the database components, also exits the process.  This lack of separation is a problem specifically for the tools, since some tools internally start up a database server to enable the &quot;&amp;#45;&amp;#45;dbpath&quot; direct data file access functionality.  This means that when the server gets shut down, the process exits which means the tools have limited control over how the process exits in this case.  See &lt;a href=&quot;https://jira.mongodb.org/browse/TOOLS-161&quot; title=&quot;Have tools always exit with non-zero exit code on error&quot; class=&quot;issue-link&quot; data-issue-key=&quot;TOOLS-161&quot;&gt;&lt;del&gt;SERVER-9473&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/TOOLS-11&quot; title=&quot;mongodump exits with success despite &amp;#39;no space left on device&amp;#39; error&quot; class=&quot;issue-link&quot; data-issue-key=&quot;TOOLS-11&quot;&gt;&lt;del&gt;SERVER-8064&lt;/del&gt;&lt;/a&gt;, and &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-1994&quot; title=&quot;mongorestore doesn&amp;#39;t return an error code to OS when the requested operation can&amp;#39;t be completed.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-1994&quot;&gt;&lt;del&gt;SERVER-1994&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;</description>
                <environment></environment>
        <key id="35565">SERVER-5520</key>
            <summary>Shutdown rewrite (tracking ticket)</summary>
                <type id="2" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14711&amp;avatarType=issuetype">New Feature</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="schwerin@mongodb.com">Andy Schwerin</assignee>
                                    <reporter username="ian@mongodb.com">Ian Whalen</reporter>
                        <labels>
                            <label>tracking-ticket</label>
                    </labels>
                <created>Thu, 5 Apr 2012 15:27:02 +0000</created>
                <updated>Fri, 17 Mar 2017 13:58:21 +0000</updated>
                            <resolved>Fri, 17 Mar 2017 13:58:21 +0000</resolved>
                                                                    <component>Internal Code</component>
                                        <votes>0</votes>
                                    <watches>7</watches>
                                                                                                                <comments>
                            <comment id="742760" author="xgen-internal-githook" created="Thu, 16 Oct 2014 14:14:56 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;benety&apos;, u&apos;name&apos;: u&apos;Benety Goh&apos;, u&apos;email&apos;: u&apos;benety@mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt; do not check exit code when running mongod --repair in test&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/cacbfa2f82ee3ffe5513e727542d513d3f98ac1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/cacbfa2f82ee3ffe5513e727542d513d3f98ac1c&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="729697" author="xgen-internal-githook" created="Mon, 29 Sep 2014 18:06:34 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;benety&apos;, u&apos;name&apos;: u&apos;Benety Goh&apos;, u&apos;email&apos;: u&apos;benety@mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt; do not check exit code on tool invocation&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/85901e7c7601e6b969d1e553fd2ef92696683c55&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/85901e7c7601e6b969d1e553fd2ef92696683c55&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="729554" author="xgen-internal-githook" created="Mon, 29 Sep 2014 16:37:19 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;benety&apos;, u&apos;name&apos;: u&apos;Benety Goh&apos;, u&apos;email&apos;: u&apos;benety@mongodb.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt; &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-15096&quot; title=&quot;Create standalone tool to read/write directly from stored format&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-15096&quot;&gt;&lt;del&gt;SERVER-15096&lt;/del&gt;&lt;/a&gt; do not check exit code for mongoshim in normal operation&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/195113534141890f15b1db931c7dfa5162dc6049&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/195113534141890f15b1db931c7dfa5162dc6049&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="114985" author="auto" created="Mon, 30 Apr 2012 20:10:54 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;login&apos;: u&apos;andy10gen&apos;, u&apos;name&apos;: u&apos;Andy Schwerin&apos;, u&apos;email&apos;: u&apos;schwerin@10gen.com&apos;}
&lt;p&gt;Message: Do not call dbexit() from within logRotate or initLogging().&lt;/p&gt;

&lt;p&gt;While, perhaps, not a permanent solution, using fassert() when log rotation fails is a better&lt;br/&gt;
choice than dbexit(), because fassert() is a fast shutdown path.&lt;/p&gt;

&lt;p&gt;See &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt;.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/912bc3c25f46041ee1a69a8bef1e6b083475392d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/912bc3c25f46041ee1a69a8bef1e6b083475392d&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="114984" author="auto" created="Mon, 30 Apr 2012 20:10:53 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;login&apos;: u&apos;andy10gen&apos;, u&apos;name&apos;: u&apos;Andy Schwerin&apos;, u&apos;email&apos;: u&apos;schwerin@10gen.com&apos;}
&lt;p&gt;Message: Stop using mongo::dbexit() in malloc/realloc out-of-memory situations.&lt;/p&gt;

&lt;p&gt;This is only marginally better, but is a stop gap pending a fuller startup/shutdown&lt;br/&gt;
rewrite.&lt;/p&gt;

&lt;p&gt;See &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt; to track the shutdown rewrite.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/a3551eadc4857ac4daf07837157909dc2d474c08&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/a3551eadc4857ac4daf07837157909dc2d474c08&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="114469" author="auto" created="Fri, 27 Apr 2012 21:21:42 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;login&apos;: u&apos;andy10gen&apos;, u&apos;name&apos;: u&apos;Andy Schwerin&apos;, u&apos;email&apos;: u&apos;schwerin@10gen.com&apos;}
&lt;p&gt;Message: Remove code that has been dead since commit in June 2011.&lt;/p&gt;

&lt;p&gt;Removes from consideration a dbexit(), so relevant to &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Commit in question: 759e1e646df90b5ac858e2ccd6d587ef59912353&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/8dc5617a4d474d8342472f21bcb1cbebfc25b038&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/8dc5617a4d474d8342472f21bcb1cbebfc25b038&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="113785" author="auto" created="Wed, 25 Apr 2012 21:25:32 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;login&apos;: u&apos;andy10gen&apos;, u&apos;name&apos;: u&apos;Andy Schwerin&apos;, u&apos;email&apos;: u&apos;schwerin@10gen.com&apos;}
&lt;p&gt;Message: ntservice needs to call exitCleanly(), not dbexit().&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt; &amp;#8211; As part of a larger shutdown rewrite, exitCleanly might need&lt;br/&gt;
to change substantially.  However, for now, exitCleanly() is the right way to&lt;br/&gt;
safely shut down mongod.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/f460ae61beaed965a54649b703f03095a6ac055e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/f460ae61beaed965a54649b703f03095a6ac055e&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="113559" author="auto" created="Wed, 25 Apr 2012 14:15:23 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;login&apos;: u&apos;andy10gen&apos;, u&apos;name&apos;: u&apos;Andy Schwerin&apos;, u&apos;email&apos;: u&apos;schwerin@10gen.com&apos;}
&lt;p&gt;Message: Limit exitCleanly() and ntservice module to mongos and mongod.&lt;/p&gt;

&lt;p&gt;The notions of exitCleanly() versus dbexit() vs _exit() in the scope of mongod&lt;br/&gt;
shutdown need to be reconsidered.  This patch just attempts to limit the scope&lt;br/&gt;
of the issue to mongos and mongod.  It would be better to limit it to just&lt;br/&gt;
mongod, but the implementation of the ntservice behavior doesn&apos;t currently&lt;br/&gt;
support that.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5520&quot; title=&quot;Shutdown rewrite (tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5520&quot;&gt;&lt;del&gt;SERVER-5520&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-5702&quot; title=&quot;Unit test framework improvements (unittest)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-5702&quot;&gt;&lt;del&gt;SERVER-5702&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/127b0b78ae3ac9b2bc0a54bcd3c097c0e2a91e79&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/127b0b78ae3ac9b2bc0a54bcd3c097c0e2a91e79&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                            <outwardlinks description="depends on">
                                        <issuelink>
            <issuekey id="37964">SERVER-5773</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="39044">CXX-103</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37146">SERVER-5703</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="39043">SERVER-5868</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is depended on by">
                                        <issuelink>
            <issuekey id="66324">SERVER-8707</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="60777">TOOLS-11</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73153">TOOLS-161</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="155563">SERVER-15096</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </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_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 25 Apr 2012 13:58:24 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        9 years, 17 weeks, 6 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-5703'>SERVER-5703</a></s>, <s><a href='https://jira.mongodb.org/browse/SERVER-5773'>SERVER-5773</a></s>, <s><a href='https://jira.mongodb.org/browse/SERVER-5868'>SERVER-5868</a></s>, <s><a href='https://jira.mongodb.org/browse/CXX-103'>CXX-103</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>false</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>schwerin@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            9 years, 17 weeks, 6 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_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>schwerin@mongodb.com</customfieldvalue>
            <customfieldvalue>auto</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>ian@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hro6vr:</customfieldvalue>

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

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

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