<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 02:57:41 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-1667] Failed to insert data while sharding gridfs.fs.chunks with key {&quot;files_id&quot;: 1, &quot;n&quot;: 1}</title>
                <link>https://jira.mongodb.org/browse/SERVER-1667</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;I built up a system that consists of 2 replica set shards (each has 3 servers), 1 config server, 1 mongos.&lt;br/&gt;
then sharded the database and gridfs.fs.chunks without any error.&lt;br/&gt;
However, when I tried to insert a file with my python script, it always failed.&lt;/p&gt;</description>
                <environment></environment>
        <key id="12887">SERVER-1667</key>
            <summary>Failed to insert data while sharding gridfs.fs.chunks with key {&quot;files_id&quot;: 1, &quot;n&quot;: 1}</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="mathias@mongodb.com">Mathias Stearn</assignee>
                                    <reporter username="stewwu">Che-Ching Wu</reporter>
                        <labels>
                    </labels>
                <created>Tue, 24 Aug 2010 10:30:13 +0000</created>
                <updated>Fri, 30 Mar 2012 14:26:51 +0000</updated>
                            <resolved>Wed, 25 Aug 2010 18:05:06 +0000</resolved>
                                    <version>1.6.1</version>
                                                    <component>Sharding</component>
                                        <votes>0</votes>
                                    <watches>0</watches>
                                                                                                                <comments>
                            <comment id="17388" author="redbeard0531" created="Wed, 25 Aug 2010 18:12:03 +0000"  >&lt;p&gt;FYI: I looked into it and this message was hidden by the python driver. See &lt;a href=&quot;http://jira.mongodb.org/browse/PYTHON-158&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;http://jira.mongodb.org/browse/PYTHON-158&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="17387" author="redbeard0531" created="Wed, 25 Aug 2010 18:05:06 +0000"  >&lt;p&gt;We currently only support sharding on &lt;/p&gt;
{files_id:1}
&lt;p&gt;. The issue is that we don&apos;t yet have code to distribute the md5 calculations between shards, so a file must live fully on a single shard. You should get an error that looks something like this:&lt;/p&gt;

&lt;p&gt; 13092: &quot;GridFS chunks collection can only be sharded on files_id&quot;&lt;/p&gt;
</comment>
                            <comment id="17355" author="stewwu" created="Wed, 25 Aug 2010 07:44:25 +0000"  >&lt;p&gt;The exception of python insertion script I&apos;ve posted above.&lt;br/&gt;
And I found that there is no fs.files collection in the DB.&lt;/p&gt;

&lt;p&gt;&amp;gt; show dbs&lt;br/&gt;
admin&lt;br/&gt;
gridfs_bench2&lt;br/&gt;
local&lt;br/&gt;
&amp;gt; use gridfs_bench2&lt;br/&gt;
switched to db gridfs_bench2&lt;br/&gt;
&amp;gt; show collections&lt;br/&gt;
fs.chunks&lt;br/&gt;
system.indexes&lt;br/&gt;
&amp;gt; use config&lt;br/&gt;
switched to db config&lt;br/&gt;
&amp;gt; db.chunks.find()&lt;br/&gt;
{ &quot;_id&quot; : &quot;gridfs_bench2.fs.chunks-files_id_MinKeyn_MinKey&quot;, &quot;lastmod&quot; : &lt;/p&gt;
{ &quot;t&quot; : 1000, &quot;i&quot; : 0 }
&lt;p&gt;, &quot;ns&quot; : &quot;gridfs_bench2.fs.chunks&quot;, &quot;min&quot; : { &quot;files_id&quot; : &lt;/p&gt;
{ $minKey : 1 }
&lt;p&gt;, &quot;n&quot; : &lt;/p&gt;
{ $minKey : 1 }
&lt;p&gt; }, &quot;max&quot; : { &quot;files_id&quot; : &lt;/p&gt;
{ $maxKey : 1 }
&lt;p&gt;, &quot;n&quot; : &lt;/p&gt;
{ $maxKey : 1 }
&lt;p&gt; }, &quot;shard&quot; : &quot;shard0000&quot; }&lt;br/&gt;
&amp;gt; db.databases.find()&lt;/p&gt;
{ &quot;_id&quot; : &quot;admin&quot;, &quot;partitioned&quot; : false, &quot;primary&quot; : &quot;config&quot; }
{ &quot;_id&quot; : &quot;gridfs_bench2&quot;, &quot;partitioned&quot; : true, &quot;primary&quot; : &quot;shard0000&quot; }
&lt;p&gt;&amp;gt; db.collections.find()&lt;br/&gt;
{ &quot;_id&quot; : &quot;gridfs_bench2.fs.chunks&quot;, &quot;lastmod&quot; : &quot;Thu Jan 15 1970 20:18:22 GMT+0000 (UTC)&quot;, &quot;dropped&quot; : true, &quot;key&quot; : &lt;/p&gt;
{ &quot;files_id&quot; : 1, &quot;n&quot; : 1 }
&lt;p&gt;, &quot;unique&quot; : false }&lt;/p&gt;

&lt;p&gt;==============&lt;/p&gt;

&lt;p&gt;Here is the log from mongod.&lt;/p&gt;

&lt;p&gt;Wed Aug 25 07:17:02 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; dropDatabase gridfs_bench2&lt;br/&gt;
Wed Aug 25 07:17:02 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn13&amp;#93;&lt;/span&gt; getmore local.oplog.rs cid:381969710586602011 getMore: { ts: { $gte: new Date(5509233406178&lt;br/&gt;
Wed Aug 25 07:17:05 allocating new datafile /var/lib/mongo/gridfs_bench2.ns, filling with zeroes...&lt;br/&gt;
Wed Aug 25 07:17:05 done allocating datafile /var/lib/mongo/gridfs_bench2.ns, size: 16MB,  took 0.034 secs&lt;br/&gt;
Wed Aug 25 07:17:05 allocating new datafile /var/lib/mongo/gridfs_bench2.0, filling with zeroes...&lt;br/&gt;
Wed Aug 25 07:17:06 done allocating datafile /var/lib/mongo/gridfs_bench2.0, size: 64MB,  took 0.112 secs&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; building new index on &lt;/p&gt;
{ _id: 1 }
&lt;p&gt; for gridfs_bench2.fs.chunks&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; Buildindex gridfs_bench2.fs.chunks idxNo:0 { name: &quot;&lt;em&gt;id&lt;/em&gt;&quot;, ns: &quot;gridfs_bench2.fs.chunks&quot;, k&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; done for 0 records 0secs&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; info: creating collection gridfs_bench2.fs.chunks on add index&lt;br/&gt;
building new index on &lt;/p&gt;
{ files_id: 1, n: 1 }
&lt;p&gt; for gridfs_bench2.fs.chunks&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; Buildindex gridfs_bench2.fs.chunks idxNo:1 { ns: &quot;gridfs_bench2.fs.chunks&quot;, key: { files_id&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; done for 0 records 0secs&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn14&amp;#93;&lt;/span&gt; insert gridfs_bench2.system.indexes 153ms&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn13&amp;#93;&lt;/span&gt; getmore local.oplog.rs cid:381969710586602011 getMore: { ts: { $gte: new Date(5509233406178&lt;br/&gt;
Wed Aug 25 07:17:06 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn10&amp;#93;&lt;/span&gt; getmore local.oplog.rs cid:5384725566605300308 getMore: { ts: { $gte: new Date(550923340617&lt;br/&gt;
Wed Aug 25 07:17:06 allocating new datafile /var/lib/mongo/gridfs_bench2.1, filling with zeroes...&lt;br/&gt;
Wed Aug 25 07:17:06 done allocating datafile /var/lib/mongo/gridfs_bench2.1, size: 128MB,  took 0.212 secs&lt;/p&gt;

&lt;p&gt;==============&lt;/p&gt;

&lt;p&gt;Finally, if I use &lt;/p&gt;
{files_id:1}
&lt;p&gt; only for shard key. There&apos;s no error.&lt;/p&gt;</comment>
                            <comment id="17354" author="eliot" created="Wed, 25 Aug 2010 07:26:07 +0000"  >&lt;p&gt;There are no errors there.&lt;/p&gt;

&lt;p&gt;What happens when you try to write something?&lt;/p&gt;</comment>
                            <comment id="17353" author="stewwu" created="Wed, 25 Aug 2010 07:21:42 +0000"  >&lt;p&gt;I&apos;ve modified to use SON in python script and it&apos;s in the right sequence now. Following is the output messages of mongos.&lt;br/&gt;
But I still got the error. Things not changed.&lt;/p&gt;


&lt;p&gt;Wed Aug 25 02:16:31 connection accepted from 172.16.1.181:29753 #3&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; couldn&apos;t find database &lt;span class=&quot;error&quot;&gt;&amp;#91;gridfs_bench2&amp;#93;&lt;/span&gt; in config db&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; 	 put &lt;span class=&quot;error&quot;&gt;&amp;#91;gridfs_bench2&amp;#93;&lt;/span&gt; on: shard0000:shard1/172.16.1.190:27018,172.16.1.191:27018,172.16.1.192:27018&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; DROP DATABASE: gridfs_bench2&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; DBConfig::dropDatabase: gridfs_bench2&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; config change: { _id: &quot;vm-simplestore1.saas-sd.lava.tw-2010-08-25T02:16:31-0&quot;, server: &quot;vm-simplestore1.saas-sd.lava.tw&quot;, time: new Date(1282702591538), what: &quot;dropDatabase.start&quot;, ns: &quot;gridfs_bench2&quot;, details: {} }&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt;    DBConfig::dropDatabase: gridfs_bench2 dropped sharded collections: 0&lt;br/&gt;
Wed Aug 25 02:16:31 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; config change: { _id: &quot;vm-simplestore1.saas-sd.lava.tw-2010-08-25T02:16:31-1&quot;, server: &quot;vm-simplestore1.saas-sd.lava.tw&quot;, time: new Date(1282702591556), what: &quot;dropDatabase&quot;, ns: &quot;gridfs_bench2&quot;, details: {} }&lt;br/&gt;
Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; couldn&apos;t find database &lt;span class=&quot;error&quot;&gt;&amp;#91;gridfs_bench2&amp;#93;&lt;/span&gt; in config db&lt;br/&gt;
Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; 	 put &lt;span class=&quot;error&quot;&gt;&amp;#91;gridfs_bench2&amp;#93;&lt;/span&gt; on: shard0000:shard1/172.16.1.190:27018,172.16.1.191:27018,172.16.1.192:27018&lt;br/&gt;
Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; enabling sharding on: gridfs_bench2&lt;br/&gt;
Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; CMD: shardcollection: { shardcollection: &quot;gridfs_bench2.fs.chunks&quot;, key: &lt;/p&gt;
{ files_id: 1, n: 1 }
&lt;p&gt; }&lt;br/&gt;
Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; enable sharding on: gridfs_bench2.fs.chunks with shard key: &lt;/p&gt;
{ files_id: 1, n: 1 }
&lt;p&gt;Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; no chunks for:gridfs_bench2.fs.chunks so creating first: ns:gridfs_bench2.fs.chunks at: shard0000:shard1/172.16.1.190:27018,172.16.1.191:27018,172.16.1.192:27018 lastmod: 1|0 min: &lt;/p&gt;
{ files_id: MinKey, n: MinKey }
&lt;p&gt; max: &lt;/p&gt;
{ files_id: MaxKey, n: MaxKey }
&lt;p&gt;Wed Aug 25 02:16:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn3&amp;#93;&lt;/span&gt; end connection 172.16.1.181:29753&lt;/p&gt;</comment>
                            <comment id="17347" author="eliot" created="Wed, 25 Aug 2010 03:19:22 +0000"  >&lt;p&gt;Something is weird&lt;/p&gt;

&lt;p&gt;notice:&lt;/p&gt;

&lt;p&gt;Tue Aug 24 21:20:42 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn1&amp;#93;&lt;/span&gt; CMD: shardcollection: { shardcollection: &quot;gridfs_bench.fs.chunks&quot;, key: &lt;/p&gt;
{ n: 1, files_id: 1 }
&lt;p&gt; }&lt;br/&gt;
Tue Aug 24 21:20:42 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn1&amp;#93;&lt;/span&gt; enable sharding on: gridfs_bench.fs.chunks with shard key: &lt;/p&gt;
{ n: 1, files_id: 1 }


&lt;p&gt;Do you have the commands you used to shard?&lt;/p&gt;</comment>
                            <comment id="17346" author="stewwu" created="Wed, 25 Aug 2010 03:18:52 +0000"  >&lt;p&gt;BTW, here is the exception from python script.&lt;/p&gt;


&lt;p&gt;Traceback (most recent call last):&lt;br/&gt;
  File &quot;gridfs_bench.py&quot;, line 42, in ?&lt;br/&gt;
    fs.put(value, filename=&quot;%d/%d.txt&quot; % (fn/4000,fn%4000))&lt;br/&gt;
  File &quot;build/bdist.linux-x86_64/egg/gridfs/_&lt;em&gt;init&lt;/em&gt;_.py&quot;, line 109, in put&lt;br/&gt;
  File &quot;build/bdist.linux-x86_64/egg/gridfs/grid_file.py&quot;, line 218, in close&lt;br/&gt;
  File &quot;build/bdist.linux-x86_64/egg/gridfs/grid_file.py&quot;, line 200, in __flush&lt;br/&gt;
  File &quot;build/bdist.linux-x86_64/egg/pymongo/database.py&quot;, line 293, in command&lt;br/&gt;
pymongo.errors.OperationFailure: command SON(&lt;span class=&quot;error&quot;&gt;&amp;#91;(&amp;#39;filemd5&amp;#39;, ObjectId(&amp;#39;4c7443a7865b3b5014000000&amp;#39;)), (&amp;#39;root&amp;#39;, u&amp;#39;fs&amp;#39;)&amp;#93;&lt;/span&gt;) failed: db assertion failure&lt;/p&gt;</comment>
                            <comment id="17345" author="stewwu" created="Wed, 25 Aug 2010 03:13:50 +0000"  >&lt;p&gt;&amp;gt; use config&lt;br/&gt;
&amp;gt; db.collections.find()&lt;br/&gt;
{ &quot;_id&quot; : &quot;gridfs_bench.fs.chunks&quot;, &quot;lastmod&quot; : &quot;Thu Jan 15 1970 20:18:07 GMT+0000 (UTC)&quot;, &quot;dropped&quot; : false, &quot;key&quot; : &lt;/p&gt;
{ &quot;files_id&quot; : 1, &quot;n&quot; : 1 }
&lt;p&gt;, &quot;unique&quot; : false }&lt;/p&gt;
{ &quot;_id&quot; : &quot;gridfs.fs.chunks&quot;, &quot;lastmod&quot; : &quot;Thu Jan 15 1970 20:17:00 GMT+0000 (UTC)&quot;, &quot;dropped&quot; : true }
&lt;p&gt;&amp;gt; &lt;/p&gt;</comment>
                            <comment id="17344" author="eliot" created="Wed, 25 Aug 2010 02:25:18 +0000"  >&lt;p&gt;Looks like you created the shard key backwards.&lt;/p&gt;

&lt;p&gt;You made it on &lt;/p&gt;
{ n: 1, files_id: 1 }
&lt;p&gt; needs to be on &lt;/p&gt;
{ files_id: 1 , n : 1 }</comment>
                            <comment id="17238" author="eliot" created="Tue, 24 Aug 2010 12:38:39 +0000"  >&lt;p&gt;Can you send the full mongos log?&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="10395" name="mongos.log" size="2464" author="stewwu" created="Wed, 25 Aug 2010 02:22:29 +0000"/>
                    </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, 24 Aug 2010 12:38:39 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        13 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>ian@mongodb.com</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10026"><![CDATA[ALL]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>stewwu</customfieldvalue>
            <customfieldvalue>eliot</customfieldvalue>
            <customfieldvalue>mathias@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrpgr3:</customfieldvalue>

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

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

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