<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 04:32:16 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-33093] catalog::openCatalog must rebuild all indexes for a collection in one pass</title>
                <link>https://jira.mongodb.org/browse/SERVER-33093</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;KVStorageEngine::reconcileCatalogAndIdents &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/storage/kv/kv_storage_engine.cpp#L240-L243&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;returns a list of (collection name, index name) pairs&lt;/a&gt; that need to be rebuilt. If a collection requires rebuilding multiple indexes, they will be separate entries in this list.&lt;/p&gt;

&lt;p&gt;This API suggests that &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/repair_database.cpp#L132&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;rebuilding indexes&lt;/a&gt; one by one would work, but that&apos;s &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/repair_database.cpp#L162-L164&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;unfortunately not true&lt;/a&gt;.[1]&lt;/p&gt;

&lt;p&gt;There are two obvious ways to correct &lt;tt&gt;catalog::openCatalog&lt;/tt&gt; &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/catalog/catalog_control.cpp#L83-L123&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;rebuilding indexes one by one&lt;/a&gt;.&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Complete the TODO to enable building an index without the collection object.&lt;/li&gt;
	&lt;li&gt;Have &lt;tt&gt;catalog::openCatalog&lt;/tt&gt; group all the indexes to rebuild per collection before passing them to &lt;tt&gt;rebuildIndexesOnCollection&lt;/tt&gt;.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;[1] More completely: &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/repair_database.cpp#L167&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;creating the collection object&lt;/a&gt; will cascade and create all of the in-memory index objects for that collection. The WiredTigerIndex constructor will fail when &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/storage/wiredtiger/wiredtiger_index.cpp#L256-L269&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;searching for the underlying table&lt;/a&gt;. &lt;tt&gt;rebuildIndexesOnCollection&lt;/tt&gt; avoids this situation by first &lt;a href=&quot;https://github.com/mongodb/mongo/blob/a7019d2bce/src/mongo/db/repair_database.cpp#L155-L159&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dropping all indexes that are to be rebuilt&lt;/a&gt; from the storage engine&apos;s implementation of the collection catalog. Thus when the &lt;tt&gt;Collection&lt;/tt&gt; object is constructed, it does not observe the indexes to be rebuilt. Thus this bug only manifests when there is more than one missing index to rebuild on a collection.&lt;/p&gt;</description>
                <environment></environment>
        <key id="491720">SERVER-33093</key>
            <summary>catalog::openCatalog must rebuild all indexes for a collection in one pass</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="kyle.suarez@mongodb.com">Kyle Suarez</assignee>
                                    <reporter username="daniel.gottlieb@mongodb.com">Daniel Gottlieb</reporter>
                        <labels>
                            <label>rollback-functional</label>
                    </labels>
                <created>Fri, 2 Feb 2018 21:30:55 +0000</created>
                <updated>Sun, 29 Oct 2023 22:35:09 +0000</updated>
                            <resolved>Tue, 13 Feb 2018 21:33:55 +0000</resolved>
                                                    <fixVersion>3.7.3</fixVersion>
                                    <component>Index Maintenance</component>
                    <component>Storage</component>
                                        <votes>0</votes>
                                    <watches>6</watches>
                                                                                                                <comments>
                            <comment id="1806053" author="siyuan.zhou@10gen.com" created="Wed, 14 Feb 2018 19:56:09 +0000"  >&lt;p&gt;Since the commit got reverted, no BF was filed according to the BF procedure. Tracking the issue in &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-33322&quot; title=&quot;reconcileCatalogAndIdents() should also include unready indexes in set of indexes to rebuild&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-33322&quot;&gt;&lt;del&gt;SERVER-33322&lt;/del&gt;&lt;/a&gt; is sufficient. Thanks for letting me know! CC the current Build Baron, &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=adam.martin&quot; class=&quot;user-hover&quot; rel=&quot;adam.martin&quot;&gt;adam.martin&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="1805513" author="kyle.suarez" created="Wed, 14 Feb 2018 14:51:52 +0000"  >&lt;p&gt;Filed &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-33322&quot; title=&quot;reconcileCatalogAndIdents() should also include unready indexes in set of indexes to rebuild&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-33322&quot;&gt;&lt;del&gt;SERVER-33322&lt;/del&gt;&lt;/a&gt; for the index building fix.&lt;/p&gt;</comment>
                            <comment id="1805442" author="kyle.suarez" created="Wed, 14 Feb 2018 14:13:18 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=daniel.gottlieb&quot; class=&quot;user-hover&quot; rel=&quot;daniel.gottlieb&quot;&gt;daniel.gottlieb&lt;/a&gt;, looks like &lt;tt&gt;reconcileCatalogAndIdents()&lt;/tt&gt; shouldn&apos;t include unready indexes in the list of indexes to rebuild when the &lt;tt&gt;--noIndexBuildRetry&lt;/tt&gt; option is set:&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;[js_test:index_no_retry] 2018-02-13T22:06:10.241+0000 2018-02-13T22:06:10.240+0000 E QUERY    [thread1] Error: did not throw exception: index {a: 1} was rebuilt in spite of --noIndexBuildRetry :&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;[js_test:index_no_retry] 2018-02-13T22:06:10.241+0000 doassert@src/mongo/shell/assert.js:18:14&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;[js_test:index_no_retry] 2018-02-13T22:06:10.242+0000 assert.throws@src/mongo/shell/assert.js:365:13&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;[js_test:index_no_retry] 2018-02-13T22:06:10.242+0000 @jstests/noPassthrough/index_no_retry.js:56:1&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;[js_test:index_no_retry] 2018-02-13T22:06:10.242+0000 @jstests/noPassthrough/index_no_retry.js:7: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;   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;[js_test:index_no_retry] 2018-02-13T22:06:10.242+0000 failed to load: jstests/noPassthrough/index_no_retry.js&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;

&lt;p&gt;If we want to fix this, should we just open a separate ticket to track the work, given that we won&apos;t revert the other commit (which is the main point of this ticket)?&lt;/p&gt;</comment>
                            <comment id="1805139" author="kyle.suarez" created="Wed, 14 Feb 2018 01:37:16 +0000"  >&lt;p&gt;I&apos;m glad I committed them separately &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.mongodb.org/images/icons/emoticons/smile.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;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=siyuan.zhou&quot; class=&quot;user-hover&quot; rel=&quot;siyuan.zhou&quot;&gt;siyuan.zhou&lt;/a&gt;, could you please link any build failures caused by that commit to this ticket?&lt;/p&gt;</comment>
                            <comment id="1805117" author="xgen-internal-githook" created="Wed, 14 Feb 2018 00:32:39 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;email&apos;: &apos;siyuan.zhou@mongodb.com&apos;, &apos;name&apos;: &apos;Siyuan Zhou&apos;, &apos;username&apos;: &apos;visualzhou&apos;}
&lt;p&gt;Message: Revert &quot;&lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-33093&quot; title=&quot;catalog::openCatalog must rebuild all indexes for a collection in one pass&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-33093&quot;&gt;&lt;del&gt;SERVER-33093&lt;/del&gt;&lt;/a&gt; include unready indexes for rebuilding when reconciling catalog&quot;&lt;/p&gt;

&lt;p&gt;This reverts commit 91b0a8c599cae1a130f8450e37681b3a134b5dd6.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/c4e444a62ce32eb37928396699fc7aaa0536226e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/c4e444a62ce32eb37928396699fc7aaa0536226e&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1804928" author="xgen-internal-githook" created="Tue, 13 Feb 2018 21:32:03 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;email&apos;: &apos;kyle.suarez@mongodb.com&apos;, &apos;name&apos;: &apos;Kyle Suarez&apos;, &apos;username&apos;: &apos;ksuarz&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-33093&quot; title=&quot;catalog::openCatalog must rebuild all indexes for a collection in one pass&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-33093&quot;&gt;&lt;del&gt;SERVER-33093&lt;/del&gt;&lt;/a&gt; include unready indexes for rebuilding when reconciling catalog&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/91b0a8c599cae1a130f8450e37681b3a134b5dd6&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/91b0a8c599cae1a130f8450e37681b3a134b5dd6&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1804927" author="xgen-internal-githook" created="Tue, 13 Feb 2018 21:32:02 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;email&apos;: &apos;kyle.suarez@mongodb.com&apos;, &apos;name&apos;: &apos;Kyle Suarez&apos;, &apos;username&apos;: &apos;ksuarz&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-33093&quot; title=&quot;catalog::openCatalog must rebuild all indexes for a collection in one pass&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-33093&quot;&gt;&lt;del&gt;SERVER-33093&lt;/del&gt;&lt;/a&gt; rebuild all indexes in one pass in openCatalog()&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/17e104e78f5682d4caf7a1ee39788201fd619ec0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/17e104e78f5682d4caf7a1ee39788201fd619ec0&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                                                <inwardlinks description="is depended on by">
                                        <issuelink>
            <issuekey id="383656">SERVER-29213</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="497811">SERVER-33322</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>7.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_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 13 Feb 2018 16:07:00 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        6 years 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_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>PM-842</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            6 years 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>daniel.gottlieb@mongodb.com</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>kyle.suarez@mongodb.com</customfieldvalue>
            <customfieldvalue>siyuan.zhou@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|htphev:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="2106">Repl 2018-02-12</customfieldvalue>
    <customfieldvalue id="2146">Repl 2018-02-26</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|htp3jj:</customfieldvalue>

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