<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:09:54 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-5795] Very Poor Performances</title>
                <link>https://jira.mongodb.org/browse/SERVER-5795</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;I have a collection with 3 million of documents. I&apos;m trying to do a query similar to the following SQL statement: select count(id), hdr_event_number from audits group by hdr_event_number;&lt;br/&gt;
In order to do this query i&apos;m using mongo 2.1.1 nigtly version (mongodb-linux-x86_64-2012-05-01) and i&apos;m using its aggregation framework.&lt;br/&gt;
I&apos;m trying to execute the following command: { &quot;aggregate&quot; : &quot;audits&quot; , &quot;pipeline&quot; : [ { &quot;$group&quot; : { &quot;_id&quot; : &quot;$hdr_event_number&quot; , &quot;numbEvent&quot; : &lt;/p&gt;
{ &quot;$sum&quot; : 1}
&lt;p&gt;}}]}&lt;/p&gt;

&lt;p&gt;This is the command result (from the java log file):&lt;/p&gt;

&lt;p&gt;17:21:23,906 INFO  &lt;span class=&quot;error&quot;&gt;&amp;#91;MongoOperationsTest&amp;#93;&lt;/span&gt; Task &lt;span class=&quot;error&quot;&gt;&amp;#91;trying to group 3068871 audit messages&amp;#93;&lt;/span&gt; finished in 887641 milliseconds; executed command: { &quot;aggregate&quot; : &quot;audits&quot; , &quot;pipeline&quot; : [ { &quot;$group&quot; : { &quot;_id&quot; : &quot;$hdr_event_number&quot; , &quot;numbEvent&quot; : &lt;/p&gt;
{ &quot;$sum&quot; : 1}
&lt;p&gt;}}]}&lt;br/&gt;
17:21:23,906 INFO  &lt;span class=&quot;error&quot;&gt;&amp;#91;MongoOperationsTest&amp;#93;&lt;/span&gt; CommandResult: { &quot;serverUsed&quot; : &quot;192.168.11.206:27017&quot; , &quot;result&quot; : [ &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_MODIFY_AUTH_TOKEN&quot; , &quot;numbEvent&quot; : 12848}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_DISABLE_ACCOUNT&quot; , &quot;numbEvent&quot; : 15792}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_SEND_DATA_VIA_ASSOC&quot; , &quot;numbEvent&quot; : 19526}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_TERMINATE_SESSION&quot; , &quot;numbEvent&quot; : 36454}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_RESOURCE_EXHAUST&quot; , &quot;numbEvent&quot; : 43281}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_QUERY_ACCOUNT&quot; , &quot;numbEvent&quot; : 93545}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_ENABLE_ACCOUNT&quot; , &quot;numbEvent&quot; : 146137}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_MODIFY_ACCOUNT&quot; , &quot;numbEvent&quot; : 21635}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_QUERY_DATA_ITEM_CONTENTS&quot; , &quot;numbEvent&quot; : 28526}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_DELETE_DATA_ITEM&quot; , &quot;numbEvent&quot; : 61315}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_DELETE_ACCOUNT&quot; , &quot;numbEvent&quot; : 511476}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_NOT_SPECIFIED&quot; , &quot;numbEvent&quot; : 543894}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_MODIFY_DATA_ITEM_ASSOC_CONTEXT&quot; , &quot;numbEvent&quot; : 10}
&lt;p&gt; , &lt;/p&gt;
{ &quot;_id&quot; : &quot;XDAS_AE_CREATE_ACCOUNT&quot; , &quot;numbEvent&quot; : 1534432}
&lt;p&gt;] , &quot;ok&quot; : 1.0}&lt;/p&gt;

&lt;p&gt;As you can see the time in milliseconds is 887641 for counting and grouping 3Million of file.&lt;br/&gt;
On my mongo server i launched the top command wile the command was in xecution; this is the result:&lt;br/&gt;
PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND&lt;br/&gt;
  961 root      20   0 24.1g 462m 447m S 82.5 15.3   2:05.29 mongod&lt;br/&gt;
    1 root      20   0 23676 1896 1292 S  0.0  0.1   0:09.31 init&lt;br/&gt;
    2 root      20   0     0    0    0 S  0.0  0.0   0:00.02 kthreadd&lt;br/&gt;
    3 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 migration/0&lt;br/&gt;
    4 root      20   0     0    0    0 S  0.0  0.0   0:00.01 ksoftirqd/0&lt;br/&gt;
    5 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 watchdog/0&lt;br/&gt;
    6 root      20   0     0    0    0 S  0.0  0.0   0:00.68 events/0&lt;br/&gt;
    7 root      20   0     0    0    0 S  0.0  0.0   0:00.00 cpuset&lt;br/&gt;
    8 root      20   0     0    0    0 S  0.0  0.0   0:00.00 khelper&lt;br/&gt;
    9 root      20   0     0    0    0 S  0.0  0.0   0:00.00 netns&lt;br/&gt;
   10 root      20   0     0    0    0 S  0.0  0.0   0:00.00 async/mgr&lt;br/&gt;
   11 root      20   0     0    0    0 S  0.0  0.0   0:00.00 pm&lt;br/&gt;
   12 root      20   0     0    0    0 S  0.0  0.0   0:00.00 sync_supers&lt;br/&gt;
   13 root      20   0     0    0    0 S  0.0  0.0   0:00.00 bdi-default&lt;br/&gt;
   14 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kintegrityd/0&lt;br/&gt;
   15 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kblockd/0&lt;br/&gt;
   16 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kacpid&lt;br/&gt;
   17 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kacpi_notify&lt;br/&gt;
   18 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kacpi_hotplug&lt;br/&gt;
   19 root      20   0     0    0    0 S  0.0  0.0   0:00.01 ata/0&lt;br/&gt;
   20 root      20   0     0    0    0 S  0.0  0.0   0:00.00 ata_aux&lt;br/&gt;
   21 root      20   0     0    0    0 S  0.0  0.0   0:00.00 ksuspend_usbd&lt;br/&gt;
   22 root      20   0     0    0    0 S  0.0  0.0   0:00.00 khubd&lt;br/&gt;
   23 root      20   0     0    0    0 S  0.0  0.0   0:00.01 kseriod&lt;br/&gt;
   24 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kmmcd&lt;br/&gt;
   26 root      20   0     0    0    0 S  0.0  0.0   0:00.00 khungtaskd&lt;br/&gt;
   28 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kswapd0&lt;br/&gt;
   29 root      25   5     0    0    0 S  0.0  0.0   0:00.00 ksmd&lt;br/&gt;
   30 root      20   0     0    0    0 S  0.0  0.0   0:00.00 aio/0&lt;br/&gt;
   31 root      20   0     0    0    0 S  0.0  0.0   0:00.00 ecryptfs-kthrea&lt;br/&gt;
   32 root      20   0     0    0    0 S  0.0  0.0   0:00.00 crypto/0&lt;br/&gt;
   35 root      20   0     0    0    0 S  0.0  0.0   0:00.00 pciehpd&lt;br/&gt;
   36 root      20   0     0    0    0 S  0.0  0.0   0:00.00 scsi_eh_0&lt;br/&gt;
   37 root      20   0     0    0    0 S  0.0  0.0   0:00.03 scsi_eh_1&lt;br/&gt;
   39 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kstriped&lt;br/&gt;
   40 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kmpathd/0&lt;br/&gt;
   41 root      20   0     0    0    0 S  0.0  0.0   0:00.00 kmpath_handlerd&lt;/p&gt;


&lt;p&gt;Here i list the mongostat:&lt;br/&gt;
insert  query update delete getmore command flushes mapped  vsize    res faults locked % idx miss %     qr|qw   ar|aw  netIn netOut  conn       time&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.71g      0        0          0       0|0     1|0    62b     1k     3   17:16:35&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.71g      0        0          0       0|0     1|0    62b     1k     3   17:16:36&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.71g      0        0          0       0|1     1|0   178b     2k     3   17:16:38&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.71g      0        0          0       0|0     1|0    62b     1k     3   17:16:39&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.71g      0        0          0       0|0     1|0    62b     1k     3   17:16:40&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.72g      0        0          0       0|0     1|0    62b     1k     3   17:16:41&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.72g      0        0          0       0|0     1|0    62b     1k     3   17:16:42&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.72g      0        0          0       0|0     1|0   178b     2k     3   17:16:44&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.72g      0        0          0       0|0     1|0    62b     1k     3   17:16:45&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.72g      0        0          0       0|1     1|0    62b     1k     3   17:16:46&lt;br/&gt;
insert  query update delete getmore command flushes mapped  vsize    res faults locked % idx miss %     qr|qw   ar|aw  netIn netOut  conn       time&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.73g      0        0          0       0|0     1|0   178b     2k     3   17:16:48&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.73g      0        0          0       0|0     1|0    62b     1k     3   17:16:49&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.73g      0        0          0       0|0     1|0    62b     1k     3   17:16:50&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.73g      0        0          0       0|0     1|0    62b     1k     3   17:16:51&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.74g      0        0          0       0|0     1|0   178b     2k     3   17:16:52&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.74g      0        0          0       0|0     1|0    62b     1k     3   17:16:54&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.74g      0        0          0       0|0     1|0    62b     1k     3   17:16:55&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.74g      0        0          0       0|0     1|0    62b     1k     3   17:16:56&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.75g      0        0          0       0|0     1|0    62b     1k     3   17:16:57&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.75g      0        0          0       0|0     1|0   178b     2k     3   17:16:58&lt;br/&gt;
insert  query update delete getmore command flushes mapped  vsize    res faults locked % idx miss %     qr|qw   ar|aw  netIn netOut  conn       time&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.75g      0        0          0       0|0     1|0    62b     1k     3   17:16:59&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.75g      0        0          0       0|0     1|0    62b     1k     3   17:17:00&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.75g      0        0          0       0|0     1|0    62b     1k     3   17:17:01&lt;br/&gt;
     0      0      0      0       0       1       1  11.9g  24.1g  1.75g      0        0          0       0|1     1|0    62b     1k     3   17:17:02&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.76g      0        0          0       0|0     1|0   178b     2k     3   17:17:03&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.76g      0        0          0       0|0     1|0    62b     1k     3   17:17:04&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.76g      0        0          0       0|0     1|0    62b     1k     3   17:17:06&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.76g      0        0          0       0|0     1|0    62b     1k     3   17:17:07&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.77g      0        0          0       0|0     1|0   178b     2k     3   17:17:08&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.77g      0        0          0       0|0     1|0    62b     1k     3   17:17:09&lt;br/&gt;
insert  query update delete getmore command flushes mapped  vsize    res faults locked % idx miss %     qr|qw   ar|aw  netIn netOut  conn       time&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.77g      0        0          0       0|0     1|0    62b     1k     3   17:17:10&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.77g      0        0          0       0|0     1|0    62b     1k     3   17:17:11&lt;br/&gt;
     0      0      0      0       0       3       0  11.9g  24.1g  1.77g      0        0          0       0|0     1|0   178b     2k     3   17:17:13&lt;br/&gt;
     0      0      0      0       0       1       0  11.9g  24.1g  1.78g      0        0          0       0|0     1|0    62b     1k     3   17:17:14&lt;/p&gt;</description>
                <environment>Linux vm001 2.6.32-41-server #88-Ubuntu SMP Thu Mar 29 14:32:47 UTC 2012 x86_64 GNU/Linux&lt;br/&gt;
Ubuntu 10.04.3 LTS&lt;br/&gt;
System information as of Wed May  9 17:27:51 CEST 2012&lt;br/&gt;
&lt;br/&gt;
System load:  0.08               Processes:           83&lt;br/&gt;
Usage of /:   50.4% of 37.98GB   Users logged in:     1&lt;br/&gt;
Memory usage: 48%                IP address for eth2: 192.168.11.206&lt;br/&gt;
Swap usage:   0%&lt;br/&gt;
&lt;br/&gt;
Used software:&lt;br/&gt;
Java&lt;br/&gt;
Spring 3.1&lt;br/&gt;
Spring data&lt;br/&gt;
Mongo driver 2.7.3&lt;br/&gt;
</environment>
        <key id="38245">SERVER-5795</key>
            <summary>Very Poor Performances</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="3">Duplicate</resolution>
                                        <assignee username="cwestin">Chris Westin</assignee>
                                    <reporter username="craig1980">Angelo Immediata</reporter>
                        <labels>
                            <label>performance</label>
                    </labels>
                <created>Wed, 9 May 2012 15:35:42 +0000</created>
                <updated>Wed, 15 Aug 2012 14:04:18 +0000</updated>
                            <resolved>Mon, 14 May 2012 21:33:18 +0000</resolved>
                                    <version>2.1.1</version>
                                                    <component>Aggregation Framework</component>
                                        <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="118353" author="cwestin" created="Thu, 10 May 2012 20:40:06 +0000"  >&lt;p&gt;At the present time, aggregation pipelines don&apos;t yet know how to take advantage of an index in this situation.  I&apos;ve made this ticket depend on two other tickets which are both required for that to happen.&lt;/p&gt;

&lt;p&gt;For now, for this case, have you tried using the existing MongoDB group() functionality ( &lt;a href=&quot;http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group&lt;/a&gt; ) ?  This does take advantage of indexes, and can be much faster if your query fits that pattern.&lt;/p&gt;</comment>
                            <comment id="118008" author="craig1980" created="Thu, 10 May 2012 07:57:25 +0000"  >&lt;p&gt;Indexes created on the audits collection&lt;/p&gt;</comment>
                            <comment id="118007" author="craig1980" created="Thu, 10 May 2012 07:56:52 +0000"  >&lt;p&gt;Hi there.&lt;br/&gt;
I forgot to tell you that i created indexes as well on the interested collection.&lt;br/&gt;
Attached to the JIRA you can find the list of indexes I created.&lt;br/&gt;
Angelo&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                            <outwardlinks description="depends on">
                                        <issuelink>
            <issuekey id="30534">SERVER-4961</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="26715">SERVER-4507</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="16518" name="indici.txt" size="5467" author="craig1980" created="Thu, 10 May 2012 07:57:25 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 10 May 2012 20:40:06 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        11 years, 40 weeks, 6 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[<a href='https://jira.mongodb.org/browse/SERVER-4507'>SERVER-4507</a>, <s><a href='https://jira.mongodb.org/browse/SERVER-4961'>SERVER-4961</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>true</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>
                            11 years, 40 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_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>craig1980</customfieldvalue>
            <customfieldvalue>cwestin</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hro3kn:</customfieldvalue>

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

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

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