<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 02:58:38 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-1987] Assumption of master: arbiter should vote for most ahead replica member</title>
                <link>https://jira.mongodb.org/browse/SERVER-1987</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;In the case of a 2 member + 1 arbiter replica set: e.g:&lt;/p&gt;

&lt;p&gt;&amp;gt; rs.isMaster()&lt;br/&gt;
{&lt;br/&gt;
	&quot;setName&quot; : &quot;rep0&quot;,&lt;br/&gt;
	&quot;ismaster&quot; : true,&lt;br/&gt;
	&quot;secondary&quot; : false,&lt;br/&gt;
	&quot;hosts&quot; : [&lt;br/&gt;
		&quot;192.168.2.63:27017&quot;,&lt;br/&gt;
		&quot;192.168.2.63:27018&quot;&lt;br/&gt;
	],&lt;br/&gt;
	&quot;arbiters&quot; : [&lt;br/&gt;
		&quot;192.168.2.63:27019&quot;&lt;br/&gt;
	],&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
}&lt;/p&gt;

&lt;p&gt;Consider the following:&lt;/p&gt;

&lt;p&gt;1/ kill the member on port 27017, so 27018 becomes the master:&lt;br/&gt;
2/ connect to the member on port 27018 and do some updates to a collection &lt;br/&gt;
3/ fsync to be sure the changes are saved to disk&lt;br/&gt;
4/ startup the member on port 27017 again&lt;br/&gt;
5/ connect to the member on port 27017 and observe that the previous changes have been rolled back&lt;/p&gt;

&lt;p&gt;I (possibly wrongly) was under the impression that optime was a factor in deciding who was to be primary, but clearly in this case the arbiter is voting for the most behind member to be primary when it comes up.&lt;/p&gt;

&lt;p&gt;Log information from member on port 27018 - notes other member down and becomes primary, also see mention that changes are fsync&apos;ed:&lt;/p&gt;

&lt;p&gt;Fri Oct 22 15:05:53 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet syncThread: 10278 dbclient error communicating with server&lt;br/&gt;
Fri Oct 22 15:05:53 &lt;span class=&quot;error&quot;&gt;&amp;#91;ReplSetHealthPollTask&amp;#93;&lt;/span&gt; replSet info 192.168.2.63:27017 is now down (or slow to respond)&lt;br/&gt;
Fri Oct 22 15:05:53 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet info electSelf 1&lt;br/&gt;
Fri Oct 22 15:05:53 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet PRIMARY&lt;br/&gt;
Fri Oct 22 15:06:18 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; connection accepted from 127.0.0.1:33896 #4&lt;br/&gt;
Fri Oct 22 15:07:01 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn4&amp;#93;&lt;/span&gt; end connection 127.0.0.1:33896&lt;br/&gt;
Fri Oct 22 15:08:28 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; connection accepted from 127.0.0.1:34029 #5&lt;br/&gt;
Fri Oct 22 15:09:18 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn5&amp;#93;&lt;/span&gt; command denied: &lt;/p&gt;
{ fsync: 1.0 }
&lt;p&gt;Fri Oct 22 15:09:23 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn5&amp;#93;&lt;/span&gt; CMD fsync:  sync:1 lock:0&lt;br/&gt;
Fri Oct 22 15:09:26 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn5&amp;#93;&lt;/span&gt; end connection 127.0.0.1:34029&lt;/p&gt;

&lt;p&gt;... now detects member on port 27017 is up, which is then chosen as primary, so we roll back our previous work:&lt;/p&gt;

&lt;p&gt;Fri Oct 22 15:11:51 &lt;span class=&quot;error&quot;&gt;&amp;#91;ReplSetHealthPollTask&amp;#93;&lt;/span&gt; replSet info 192.168.2.63:27017 is now up&lt;br/&gt;
Fri Oct 22 15:11:52 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; connection accepted from 192.168.2.63:47618 #7&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet we are ahead of the primary, will try to roll back&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet rollback 0&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet rollback 1&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet rollback 2 FindCommonPoint&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet info rollback our last optime:   Oct 22 15:08:34:3e7&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet info rollback their last optime: Oct 22 14:18:35:218e&lt;br/&gt;
Fri Oct 22 15:11:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs_sync&amp;#93;&lt;/span&gt; replSet info rollback diff in end of log times: 2999 seconds&lt;/p&gt;</description>
                <environment>Ubuntu lucid x86-64 mongodb compiled from src</environment>
        <key id="13453">SERVER-1987</key>
            <summary>Assumption of master: arbiter should vote for most ahead replica member</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="kristina">Kristina Chodorow</assignee>
                                    <reporter username="markir">Mark Kirkwood</reporter>
                        <labels>
                    </labels>
                <created>Fri, 22 Oct 2010 03:02:13 +0000</created>
                <updated>Tue, 12 Jul 2016 00:19:49 +0000</updated>
                            <resolved>Wed, 27 Oct 2010 22:32:25 +0000</resolved>
                                    <version>1.7.1</version>
                                    <fixVersion>1.7.2</fixVersion>
                                    <component>Replication</component>
                                        <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="20517" author="auto" created="Sat, 20 Nov 2010 06:02:41 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;kchodorow&apos;, &apos;name&apos;: &apos;Kristina Chodorow&apos;, &apos;email&apos;: &apos;kristina@10gen.com&apos;}
&lt;p&gt;Message: check for better primary before voting yea &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-1987&quot; title=&quot;Assumption of master: arbiter should vote for most ahead replica member&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-1987&quot;&gt;&lt;del&gt;SERVER-1987&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
/mongodb/mongo/commit/269c53e84b5e37597b013edadb93ba028ddb3ee3&lt;/p&gt;</comment>
                            <comment id="19792" author="markir" created="Thu, 28 Oct 2010 20:49:29 +0000"  >&lt;p&gt;Hey, my pleasure - was fun.&lt;/p&gt;</comment>
                            <comment id="19735" author="kristina" created="Wed, 27 Oct 2010 22:32:25 +0000"  >&lt;p&gt;Great!  Thanks for all the help debugging this.&lt;/p&gt;</comment>
                            <comment id="19734" author="markir" created="Wed, 27 Oct 2010 22:20:20 +0000"  >&lt;p&gt;Applied patch to my 1.7.1 src and rebuilt - looks fixed to me: several tries and we elect the right/best/freshest member to be primary each time. Fast fix! &lt;/p&gt;

&lt;p&gt;Tested with latest code from git, looks fixed there too. Nice!&lt;/p&gt;</comment>
                            <comment id="19733" author="kristina" created="Wed, 27 Oct 2010 21:38:30 +0000"  >&lt;p&gt;Could you try the latest code (or the 1.7 nightly build tomorrow)?&lt;/p&gt;</comment>
                            <comment id="19730" author="auto" created="Wed, 27 Oct 2010 21:24:37 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;kchodorow&apos;, &apos;name&apos;: &apos;Kristina Chodorow&apos;, &apos;email&apos;: &apos;kristina@10gen.com&apos;}
&lt;p&gt;Message: check for better primary before voting yea &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-1987&quot; title=&quot;Assumption of master: arbiter should vote for most ahead replica member&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-1987&quot;&gt;&lt;del&gt;SERVER-1987&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/60b24f50eebe1596728e5d8e16b2ba8428032da5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/60b24f50eebe1596728e5d8e16b2ba8428032da5&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="19720" author="kristina" created="Wed, 27 Oct 2010 19:34:54 +0000"  >&lt;p&gt;Thanks!  Looks like a race condition (27017 tries to elect itself before it knows about 27018 and the arbiter goes along with it), fixing...&lt;/p&gt;</comment>
                            <comment id="19672" author="markir" created="Tue, 26 Oct 2010 22:29:11 +0000"  >&lt;p&gt;Poking about in the code a little and enabling some debugging output for Consensus::weAreFreshest shows that when 27017 comes up it thinks it is freshest (from 27017 log):&lt;/p&gt;

&lt;p&gt;11:13:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;ReplSetHealthPollTask&amp;#93;&lt;/span&gt; replSet info localhost:27019 is now up&lt;br/&gt;
11:13:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;ReplSetHealthPollTask&amp;#93;&lt;/span&gt; replSet localhost:27019 ARBITER&lt;br/&gt;
11:13:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet dev we are freshest of up nodes, nok:1 nTies:0&lt;br/&gt;
11:13:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet info electSelf 0&lt;br/&gt;
11:13:34 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet PRIMARY&lt;/p&gt;

&lt;p&gt;Getting into this a bit more, with some extra debugging code:&lt;/p&gt;

&lt;p&gt;14:41:22 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet freshest returns &lt;/p&gt;
{ opTime: new Date(0), fresher: false, ok: 1.0 }
&lt;p&gt;14:41:22 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet dev we are freshest of up nodes, nok:1 nTies:0&lt;br/&gt;
14:41:22 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet info electSelf 0&lt;br/&gt;
14:41:22 &lt;span class=&quot;error&quot;&gt;&amp;#91;rs Manager&amp;#93;&lt;/span&gt; replSet PRIMARY&lt;/p&gt;

&lt;p&gt;So looks to me like the optime for the ARBITER (27019) is being returned here... I&apos;m trying to figure out why that is (note: stumbling through the code a bit so I may have misunderstood what is happening here)  &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;</comment>
                            <comment id="19614" author="markir" created="Mon, 25 Oct 2010 21:15:56 +0000"  >&lt;p&gt;Hmm - weird, I tried on my home workstation (32 bit Ubuntu) and can reproduce consistently. Will attach logs.&lt;/p&gt;</comment>
                            <comment id="19602" author="kristina" created="Mon, 25 Oct 2010 16:04:16 +0000"  >&lt;p&gt;Hmm, still can&apos;t reproduce with 1.7.1.  Can you attach or paste the arbiter&apos;s and 27017&apos;s logs?&lt;/p&gt;</comment>
                            <comment id="19600" author="kristina" created="Mon, 25 Oct 2010 15:50:23 +0000"  >&lt;p&gt;Thanks for the detailed instructions!  I am unable to reproduce on 1.7.2-, I&apos;m compiling 1.7.1 and will let you know.  Hopefully it&apos;s been incidentally fixed.&lt;/p&gt;</comment>
                            <comment id="19585" author="markir" created="Mon, 25 Oct 2010 03:31:04 +0000"  >&lt;p&gt;Also: If it would be helpful I&apos;ll attach a complete &apos;how to produce&apos; with steps I used to setup the replicas plus the data import and update commands, Cheers! (edit) Since I have the file(s) I&apos;ll attach &apos;em anyway!&lt;/p&gt;</comment>
                            <comment id="19584" author="markir" created="Mon, 25 Oct 2010 03:25:51 +0000"  >&lt;p&gt;Good point, I went and retested to check. Both 27018 and 27017 syncd (web console shows both at 4cc100be:1 ). I killed 27017 again, and updated some docs in a collection while connected to 27018 - which then advanced  to 4cc4f4c5:3e7. I restarted 27017 and the web console now shows:&lt;/p&gt;

&lt;p&gt;27017 - PRIMARY                                                                                                                                              4cc100be:1&lt;br/&gt;
27018 - RECOVERING rollback 2 error error not willing to roll back more than one hour of data	4cc4f4c5:3e7&lt;/p&gt;

&lt;p&gt;Here is my rs.conf at that point:&lt;/p&gt;


&lt;p&gt;&amp;gt; rs.conf()&lt;br/&gt;
{&lt;br/&gt;
	&quot;_id&quot; : &quot;rep0&quot;,&lt;br/&gt;
	&quot;version&quot; : 1,&lt;br/&gt;
	&quot;members&quot; : [&lt;br/&gt;
		&lt;/p&gt;
{
			&quot;_id&quot; : 0,
			&quot;host&quot; : &quot;192.168.2.63:27017&quot;
		}
&lt;p&gt;,&lt;br/&gt;
		&lt;/p&gt;
{
			&quot;_id&quot; : 1,
			&quot;host&quot; : &quot;192.168.2.63:27018&quot;
		}
&lt;p&gt;,&lt;/p&gt;
		{
			&quot;_id&quot; : 2,
			&quot;host&quot; : &quot;192.168.2.63:27019&quot;,
			&quot;arbiterOnly&quot; : true
		}
&lt;p&gt;	]&lt;br/&gt;
}&lt;/p&gt;
</comment>
                            <comment id="19494" author="kristina" created="Fri, 22 Oct 2010 15:07:36 +0000"  >&lt;p&gt;Sorry, rs.conf().&lt;/p&gt;</comment>
                            <comment id="19493" author="kristina" created="Fri, 22 Oct 2010 15:07:20 +0000"  >&lt;p&gt;It should use optime.  Can you send rs.config()?  Is 27018 fully synced when 27017 goes down?  (You can check the web console, make sure the values in the optime column are the same.)&lt;/p&gt;

&lt;p&gt;Fsyncs don&apos;t matter. &lt;/p&gt;</comment>
                            <comment id="19475" author="markir" created="Fri, 22 Oct 2010 03:06:06 +0000"  >&lt;p&gt;Correction: I mention that the log shows when I did the fsync - not entirely true, it actually shows that I forgot to change to the &apos;admin&apos; db before doing the fsync! I did that immediately afterwards... honest... &lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="10540" name="dim1.dat.gz" size="719594" author="markir" created="Mon, 25 Oct 2010 04:51:37 +0000"/>
                            <attachment id="10546" name="log-arbit27019" size="3323" author="markir" created="Mon, 25 Oct 2010 21:39:52 +0000"/>
                            <attachment id="10544" name="log27017" size="9053" author="markir" created="Mon, 25 Oct 2010 21:39:52 +0000"/>
                            <attachment id="10545" name="log27018" size="7618" author="markir" created="Mon, 25 Oct 2010 21:39:52 +0000"/>
                            <attachment id="10539" name="setup1987" size="1837" author="markir" created="Mon, 25 Oct 2010 04:50:48 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>16.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 22 Oct 2010 15:07:20 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        13 years, 13 weeks, 4 days 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>true</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>
                            13 years, 13 weeks, 4 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>auto</customfieldvalue>
            <customfieldvalue>kristina</customfieldvalue>
            <customfieldvalue>markir</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrpcon:</customfieldvalue>

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

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

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