<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:36:00 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-14791] Mongorestore error recreating index causes entire restore failure</title>
                <link>https://jira.mongodb.org/browse/SERVER-14791</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;When restoring a database, onto the same system from which the backup was taken, we get the following error:&lt;/p&gt;

&lt;p&gt;```&lt;br/&gt;
Error creating index Database.Collection_15: 17280 err: &quot;Btree::insert: key too large to index, failing Database.Collection_15.$Data.123.X_1 2536 { : &quot;the following challenges and process pain points have bee...&quot;&lt;br/&gt;
```&lt;/p&gt;

&lt;p&gt;We&apos;ve verified this on windows and linux. Versions 2.6.1 and 2.6.3 were both tested.&lt;/p&gt;</description>
                <environment></environment>
        <key id="150922">SERVER-14791</key>
            <summary>Mongorestore error recreating index causes entire restore failure</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="-1">Unassigned</assignee>
                                    <reporter username="sallgeud">Chad Kreimendahl</reporter>
                        <labels>
                    </labels>
                <created>Tue, 5 Aug 2014 16:40:10 +0000</created>
                <updated>Wed, 10 Dec 2014 23:11:25 +0000</updated>
                            <resolved>Wed, 13 Aug 2014 17:05:42 +0000</resolved>
                                    <version>2.6.3</version>
                                                    <component>Index Maintenance</component>
                    <component>Tools</component>
                                        <votes>0</votes>
                                    <watches>7</watches>
                                                                                                                <comments>
                            <comment id="697084" author="thomasr" created="Wed, 20 Aug 2014 17:44:23 +0000"  >&lt;p&gt;Hi Chad,&lt;/p&gt;

&lt;p&gt;I understand that this is an issue, and that the change we made for 2.6 is backwards incompatible. This was a deliberate choice, however, as the previous implementation would silently fail to index the data and return incorrect, and also inconsistent results, depending on what index was used for a query. The change is documented on our page  &lt;a href=&quot;http://docs.mongodb.org/manual/release-notes/2.6-compatibility/#index-key-length-incompatibility&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Compatibility Changes in MongoDB 2.6&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Here are some workarounds to get you past this issue:&lt;/p&gt;

&lt;ol&gt;
	&lt;li&gt;You can remove the index (or multiple indices) on the fields that contain data larger than 1024 bytes from the &lt;tt&gt;&amp;lt;collection&amp;gt;.metadata.json&lt;/tt&gt; file in the dump. The format is in json, and you can just edit it and remove the index that&apos;s causing issues, then run the restore.&lt;/li&gt;
	&lt;li&gt;You could downgrade to 2.4, restore the data, then drop the index and upgrade back to 2.6.&lt;/li&gt;
	&lt;li&gt;You can run mongod with a parameter &lt;a href=&quot;http://docs.mongodb.org/manual/reference/parameters/#param.failIndexKeyTooLong&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;failIndexKeyTooLong&lt;/a&gt; that disables the current 2.6 behavior to reject too large values. You can now restore the data, then drop the index, or modify the data to fit within the limits. Notice that this option is meant to be used temporarily to fix issues like the one you&apos;re facing. We do not recommend using this flag on an ongoing basis.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;For any of the above choices, if you have removed the index and are looking for a replacement without modifying your data, you could consider using a &lt;a href=&quot;http://docs.mongodb.org/manual/core/index-hashed/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;hashed index&lt;/a&gt;, if you only care for equality matches and range queries or sorting on that field is not required.&lt;/p&gt;

&lt;p&gt;I hope these pointers give you some options to work around the issue and get your data back into a 2.6 instance.&lt;/p&gt;

&lt;p&gt;We also have an open feature request to allow inserts with arbitrary length, at &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-3372&quot; title=&quot;Allow indexing fields of arbitrary length&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-3372&quot;&gt;&lt;del&gt;SERVER-3372&lt;/del&gt;&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Your suggestion to allow a prefix of a field to be indexed has been raised before (&lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-3260&quot; title=&quot;Prefix Indexes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-3260&quot;&gt;SERVER-3260&lt;/a&gt;) and the overarching ticket to allow general expression indices is &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-14784&quot; title=&quot;Add expression indexes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-14784&quot;&gt;SERVER-14784&lt;/a&gt;, which would cover this use case as well. Please feel free to vote for these tickets to increase their visibility.&lt;/p&gt;

&lt;p&gt;Regards,&lt;br/&gt;
Thomas &lt;/p&gt;

</comment>
                            <comment id="696991" author="sallgeud" created="Wed, 20 Aug 2014 16:42:25 +0000"  >&lt;p&gt;I think if this is &quot;works as designed&quot; then you need to redesign your indexing. This was not an issue in 2.4&lt;/p&gt;

&lt;p&gt;An Insert or Update SHOULD NOT FAIL on an index error.  If we index a field which may or may not ever be over 1k, we would still expect it to either 1) index the first 1k, or 2) fail on the index, not the insert.&lt;/p&gt;

&lt;p&gt;You also have the option of adding some functionality to your indexing to limit it to a specific length like most databases do. This would actually potentially save large amounts of disk and memory usage for those of us who can reliably say that anything past the first 50-100 characters is useless and who may want to index that way:&lt;/p&gt;

&lt;p&gt;CREATE INDEX part_of_name ON customer (name(10)); &amp;#8211; mysql index on the first 10 characters of name&lt;/p&gt;</comment>
                            <comment id="689557" author="thomasr" created="Wed, 13 Aug 2014 17:05:42 +0000"  >&lt;p&gt;Hi Chad,&lt;/p&gt;

&lt;p&gt;This is not an error, but expected. This page on &lt;a href=&quot;http://docs.mongodb.org/manual/release-notes/2.6-compatibility/#index-key-length-incompatibility&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Compatibility Changes in 2.6&lt;/a&gt; describes the new behavior regarding index key size enforcements. You can no longer insert values larger than 1024 bytes for indexed fields.&lt;/p&gt;

&lt;p&gt;As there seems to be no bug here I&apos;m resolving this ticket.&lt;/p&gt;

&lt;p&gt;Regards,&lt;br/&gt;
Thomas&lt;/p&gt;</comment>
                            <comment id="685162" author="sallgeud" created="Fri, 8 Aug 2014 17:42:53 +0000"  >&lt;p&gt;Our issue now, which may be one to take up with the C# team is that when inserting a document that has a too-large value for that index, we get an exception thrown and the document does not save. Does this mean we&apos;d have to put an absolute limit of 1024 characters on our users data entry for fields we index? &lt;/p&gt;</comment>
                            <comment id="682925" author="thomasr" created="Wed, 6 Aug 2014 17:29:37 +0000"  >&lt;p&gt;Thanks Chad. Please let us know if this is still an issue after recreating the indices (you may have to modify the documents that have too large index values). &lt;/p&gt;</comment>
                            <comment id="682099" author="sallgeud" created="Tue, 5 Aug 2014 20:33:30 +0000"  >&lt;p&gt;We actually ran the upgrade checks and deleted a number of indexes prior to upgrading from 2.4 to 2.6.  &lt;/p&gt;

&lt;p&gt;upgradeCheck showed 2 indexes that were problems (which were also found by doing a reIndex). However, those indexes previously passed the upgradeCheck within minutes of the upgrade. The data in question didn&apos;t appear to be added in the ensuing minutes, however, I&apos;m unable to tell which records are specifically the issue.&lt;/p&gt;

&lt;p&gt;I&apos;ll attempt a recreation of our indexes in this environment and ensure the backup/restore works.&lt;/p&gt;</comment>
                            <comment id="682005" author="thomasr" created="Tue, 5 Aug 2014 19:04:35 +0000"  >&lt;p&gt;Then I suspect you may have documents in that collection containing indexed fields that exceed the maximum size and are not stored in the appropriate index. These documents would have had to be inserted before upgrading to 2.6, since 2.6 now refuses to insert such documents. Version 2.4 on the other hand inserted the documents but silently failed to index the large fields.&lt;/p&gt;

&lt;p&gt;To confirm this, can you please run the &lt;a href=&quot;http://docs.mongodb.org/master/reference/method/db.upgradeCheck/#db.upgradeCheck&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;upgradeCheck&lt;/a&gt; shell helper on the database mentioned in the error:&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;use Database&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;db.upgradeCheck()&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;You can also use the &lt;a href=&quot;http://docs.mongodb.org/manual/reference/method/db.upgradeCheckAllDBs/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;db.upgradeCheckAllDBs&lt;/a&gt; script to check all available databases in a single run.&lt;/p&gt;

&lt;p&gt;Can you let me know what the upgradeCheck script(s) return?&lt;/p&gt;

&lt;p&gt;Please note that the upgradeCheck scripts scan all the collections and have some impact on performance and your working set. It&apos;s advisable to run it on secondary nodes (with a preceeding &lt;tt&gt;rs.slaveOk()&lt;/tt&gt;). &lt;/p&gt;

&lt;p&gt;Thomas&lt;/p&gt;


</comment>
                            <comment id="681968" author="sallgeud" created="Tue, 5 Aug 2014 18:35:10 +0000"  >&lt;p&gt;Nope. The backup was done with 2.6.3 and failed restoring into 2.6.3. &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;PS M:\mongo2.6\bin&amp;gt; .\mongodump.exe --version&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; version 2.6.3&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;PS M:\mongo2.6\bin&amp;gt; .\mongo.exe&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;MongoDB shell version: 2.6.3&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;connecting to: test&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;Server has startup warnings:&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;2014-06-25T15:10:43.231-0500 ** WARNING: --rest is specified without --httpinterface,&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;2014-06-25T15:10:43.231-0500 **          enabling http interface&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.version()&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;2.6.3&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="681874" author="thomasr" created="Tue, 5 Aug 2014 17:20:44 +0000"  >&lt;p&gt;Hi Chad,&lt;/p&gt;

&lt;p&gt;What version were you running when you took the backup? Was it 2.4.x or before by any chance? MongoDB 2.6 now enforces that index keys must be less than 1024 bytes, see &lt;a href=&quot;http://docs.mongodb.org/manual/reference/limits/#Index-Key-Limit&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;MongoDB Limits&lt;/a&gt;. It looks like some of your indexed fields exceed that limit.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br/&gt;
Thomas&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="19114">SERVER-3372</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>9.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 5 Aug 2014 17:20:44 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        9 years, 26 weeks 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>false</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>
                            9 years, 26 weeks 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>sallgeud</customfieldvalue>
            <customfieldvalue>thomas.rueckstiess@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrlqgn:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>130965</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_10750" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Steps To Reproduce</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>&lt;p&gt;Add data into already indexed field that is too large. Backup. Attempt to restore.&lt;/p&gt;</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|hs4vxj:</customfieldvalue>

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