<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:17:06 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-8313] Why slave always crash due to duplicated key?</title>
                <link>https://jira.mongodb.org/browse/SERVER-8313</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;We have several shardings, each sharding has 3 nodes(1 primary, 1 slave, 1 arbiter). On one of those shardings, slave crashes for many times due to the same reason:&lt;/p&gt;

&lt;p&gt;========================================================================================================================&lt;br/&gt;
Log from slave node:&lt;/p&gt;

&lt;p&gt;Mon Jan 14 20:17:16 &lt;span class=&quot;error&quot;&gt;&amp;#91;rsBackgroundSync&amp;#93;&lt;/span&gt; replSet syncing to: test-mongodb-online01.company.internal:27018&lt;br/&gt;
Mon Jan 14 20:17:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn361741&amp;#93;&lt;/span&gt; end connection 10.10.111.111:7099 (131 connections now open)&lt;br/&gt;
Mon Jan 14 20:17:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;rsSync&amp;#93;&lt;/span&gt; replSet error possible failover clock skew issue? 50f3f741:305&lt;br/&gt;
Mon Jan 14 20:17:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn361832&amp;#93;&lt;/span&gt; end connection 10.10.112.112:13124 (130 connections now open)&lt;br/&gt;
Mon Jan 14 20:17:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;repl writer worker 1&amp;#93;&lt;/span&gt; ERROR: writer worker caught exception: E11000 duplicate key error index: test.test.$user_id_1_doc_id_1  dup key: { : &quot;40b2d10559dd731750839a20b78ac075&quot;, : 331282 } on: { ts: Timestamp 1358165814000|175, h: -7276577398417103929, v: 2, op: &quot;i&quot;, ns: &quot;test.test&quot;, o: &lt;/p&gt;
{ _id: &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot;, user_id: &quot;40b2d10559dd731750839a20b78ac075&quot;, doc_id: 331282, col1: 277939, col2: 31, col3: -1, col4: 1358165766, col5: 2 }
&lt;p&gt; }&lt;br/&gt;
Mon Jan 14 20:17:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;repl writer worker 1&amp;#93;&lt;/span&gt;   Fatal Assertion 16360&lt;br/&gt;
0xaffd31 0xac5323 0x9a2e56 0xad35cd 0xb45ba9 0x3d56407851 0x3d560e767d&lt;br/&gt;
 /usr/bin/mongod(_ZN5mongo15printStackTraceERSo+0x21) &lt;span class=&quot;error&quot;&gt;&amp;#91;0xaffd31&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /usr/bin/mongod(_ZN5mongo13fassertFailedEi+0xa3) &lt;span class=&quot;error&quot;&gt;&amp;#91;0xac5323&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /usr/bin/mongod(_ZN5mongo7replset14multiSyncApplyERKSt6vectorINS_7BSONObjESaIS2_EEPNS0_8SyncTailE+0x156) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x9a2e56&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /usr/bin/mongod(_ZN5mongo10threadpool6Worker4loopEv+0x26d) &lt;span class=&quot;error&quot;&gt;&amp;#91;0xad35cd&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /usr/bin/mongod() &lt;span class=&quot;error&quot;&gt;&amp;#91;0xb45ba9&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /lib64/libpthread.so.0() &lt;span class=&quot;error&quot;&gt;&amp;#91;0x3d56407851&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /lib64/libc.so.6(clone+0x6d) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x3d560e767d&amp;#93;&lt;/span&gt;&lt;br/&gt;
Mon Jan 14 20:17:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;repl writer worker 1&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;***aborting after fassert() failure&lt;/p&gt;

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

&lt;p&gt;The following shows the indexes of our collection, user_id is our shard key:&lt;/p&gt;

&lt;p&gt;test1:PRIMARY&amp;gt; use test&lt;br/&gt;
switched to db test&lt;br/&gt;
test1:PRIMARY&amp;gt; db.test.getIndexes()&lt;br/&gt;
[&lt;br/&gt;
    {&lt;br/&gt;
        &quot;v&quot; : 1,&lt;br/&gt;
        &quot;key&quot; : &lt;/p&gt;
{
            &quot;_id&quot; : 1
        }
&lt;p&gt;,&lt;br/&gt;
        &quot;ns&quot; : &quot;test.test&quot;,&lt;br/&gt;
        &quot;name&quot; : &quot;&lt;em&gt;id&lt;/em&gt;&quot;&lt;br/&gt;
    },&lt;br/&gt;
    {&lt;br/&gt;
        &quot;v&quot; : 1,&lt;br/&gt;
        &quot;key&quot; : &lt;/p&gt;
{
            &quot;user_id&quot; : 1
        }
&lt;p&gt;,&lt;br/&gt;
        &quot;ns&quot; : &quot;test.test&quot;,&lt;br/&gt;
        &quot;name&quot; : &quot;user_id_1&quot;&lt;br/&gt;
    },&lt;br/&gt;
    {&lt;br/&gt;
        &quot;v&quot; : 1,&lt;br/&gt;
        &quot;key&quot; : &lt;/p&gt;
{
            &quot;user_id&quot; : 1,
            &quot;doc_id&quot; : 1
        }
&lt;p&gt;,&lt;br/&gt;
        &quot;unique&quot; : true,&lt;br/&gt;
        &quot;ns&quot; : &quot;test.test&quot;,&lt;br/&gt;
        &quot;name&quot; : &quot;user_id_1_doc_id_1&quot;&lt;br/&gt;
    }&lt;br/&gt;
]&lt;/p&gt;


&lt;p&gt;We have examined the oplog regarding the specific key, and we don&apos;t find any clues that we break the idempotency. Could anyone give me some advices? Thanks.&lt;/p&gt;

&lt;p&gt;test1:PRIMARY&amp;gt; use local&lt;br/&gt;
switched to db local&lt;br/&gt;
test1:PRIMARY&amp;gt; db.oplog.rs.find(&lt;/p&gt;
{ &quot;op&quot; : &quot;i&quot;, &quot;o.user_id&quot; : &quot;40b2d10559dd731750839a20b78ac075&quot; }
&lt;p&gt;)&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165814000, 175), &quot;h&quot; : NumberLong(&quot;-7276577398417103929&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;i&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot;, &quot;user_id&quot; : &quot;40b2d10559dd731750839a20b78ac075&quot;, &quot;doc_id&quot; : 331282, &quot;col1&quot; : 277939, &quot;col2&quot; : 31, &quot;col3&quot; : -1, &quot;col4&quot; : 1358165766, &quot;col5&quot; : 2 }
&lt;p&gt; }&lt;/p&gt;

&lt;p&gt;test1:PRIMARY&amp;gt; db.oplog.rs.find(&lt;/p&gt;
{ &quot;op&quot; : &quot;u&quot;, &quot;o2._id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;)&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165862000, 502), &quot;h&quot; : NumberLong(&quot;-2969379546764696617&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165857 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165857 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165857 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165857 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165857 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165862000, 847), &quot;h&quot; : NumberLong(&quot;-9174841252872684216&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165865000, 819), &quot;h&quot; : NumberLong(&quot;8728551110388921671&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165866000, 149), &quot;h&quot; : NumberLong(&quot;-5398085733751542631&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165860 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165868000, 974), &quot;h&quot; : NumberLong(&quot;-472422500396759906&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165862 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165862 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165862 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165862 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165862 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165869000, 1635), &quot;h&quot; : NumberLong(&quot;-2936801391795544718&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165847 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165847 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165847 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165847 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165847 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165871000, 328), &quot;h&quot; : NumberLong(&quot;4783438901816552532&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165868 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165868 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165868 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165868 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165868 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165871000, 923), &quot;h&quot; : NumberLong(&quot;-7701283919644547362&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165831 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165831 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165831 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165831 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165831 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165877000, 217), &quot;h&quot; : NumberLong(&quot;905044855275590032&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165858 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165858 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165858 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165858 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165858 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165878000, 321), &quot;h&quot; : NumberLong(&quot;1021697642751326149&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165814 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165814 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165814 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165814 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165814 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165878000, 1479), &quot;h&quot; : NumberLong(&quot;-1093460978146924040&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165861 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165861 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165861 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165861 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165861 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165881000, 253), &quot;h&quot; : NumberLong(&quot;7582300884665231609&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165886000, 194), &quot;h&quot; : NumberLong(&quot;-6977646000941125783&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165841 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165841 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165841 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165841 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165841 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165891000, 8), &quot;h&quot; : NumberLong(&quot;4878117036357406261&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165925000, 1403), &quot;h&quot; : NumberLong(&quot;-4218451351552474554&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165892 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165892 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165892 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165892 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165892 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165926000, 37), &quot;h&quot; : NumberLong(&quot;8166869776502988491&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165926000, 1020), &quot;h&quot; : NumberLong(&quot;-2018291843739556146&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165913 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165913 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165913 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165913 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165913 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165926000, 1578), &quot;h&quot; : NumberLong(&quot;-728060886959932591&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165888 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165888 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165888 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165888 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165888 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165932000, 363), &quot;h&quot; : NumberLong(&quot;-2899178056259116954&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165873 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165873 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165873 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165873 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165873 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165933000, 361), &quot;h&quot; : NumberLong(&quot;3881140476962009969&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165883 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165939000, 359), &quot;h&quot; : NumberLong(&quot;-7011314542025612956&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165942000, 1288), &quot;h&quot; : NumberLong(&quot;8584958629205924536&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165882 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165983000, 778), &quot;h&quot; : NumberLong(&quot;-1825276314084065452&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165918 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165918 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165918 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165918 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165918 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165991000, 747), &quot;h&quot; : NumberLong(&quot;-6136876944333387998&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165935 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165935 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165935 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165935 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165935 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165992000, 568), &quot;h&quot; : NumberLong(&quot;-628829561541387552&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165992000, 1586), &quot;h&quot; : NumberLong(&quot;2249883926090089681&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165880 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165880 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165880 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165880 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165880 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358165993000, 913), &quot;h&quot; : NumberLong(&quot;-2406566488359488622&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165986 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165986 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165986 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165986 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165986 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166031000, 414), &quot;h&quot; : NumberLong(&quot;2038488693111769456&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165985 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165985 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165985 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165985 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165985 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166036000, 694), &quot;h&quot; : NumberLong(&quot;9076849425697437764&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165981 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166050000, 1186), &quot;h&quot; : NumberLong(&quot;3767029040654546262&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166057000, 465), &quot;h&quot; : NumberLong(&quot;4054304491520021028&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166056 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166056 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166056 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166056 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166056 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166057000, 867), &quot;h&quot; : NumberLong(&quot;-8241200638844377915&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166049 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166049 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166049 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166049 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166049 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166093000, 283), &quot;h&quot; : NumberLong(&quot;8163250488038851407&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165996 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166114000, 1077), &quot;h&quot; : NumberLong(&quot;3933283505264467446&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166073 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166073 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166073 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166073 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166073 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166116000, 1092), &quot;h&quot; : NumberLong(&quot;-3910445542003046573&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166059 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166059 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166059 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166059 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166059 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166123000, 19), &quot;h&quot; : NumberLong(&quot;-3379893690547749158&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165899 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166124000, 222), &quot;h&quot; : NumberLong(&quot;-1554362852666524628&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166046 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166046 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166046 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166046 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166046 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166124000, 1013), &quot;h&quot; : NumberLong(&quot;-6412016679312996442&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166100 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166100 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166100 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166100 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166100 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166162000, 1284), &quot;h&quot; : NumberLong(&quot;-3760011584546642058&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166058 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166058 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166058 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166058 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166058 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166163000, 190), &quot;h&quot; : NumberLong(&quot;-1824466010869690902&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165987 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165987 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165987 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165987 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165987 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166170000, 450), &quot;h&quot; : NumberLong(&quot;-6006134238326624856&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166167 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166167 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166167 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166167 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166167 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166173000, 1574), &quot;h&quot; : NumberLong(&quot;-38881893422671401&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166179000, 141), &quot;h&quot; : NumberLong(&quot;-4873708995553826291&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166108 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166108 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166108 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166108 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166108 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358166187000, 372), &quot;h&quot; : NumberLong(&quot;2509842530284094589&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166178 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166178 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166178 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166178 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166178 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358179966000, 593), &quot;h&quot; : NumberLong(&quot;-4290646640946455411&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165806 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165806 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165806 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165806 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165806 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358179972000, 725), &quot;h&quot; : NumberLong(&quot;7234604075717479874&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165803 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165803 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165803 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165803 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358165803 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358180031000, 1444), &quot;h&quot; : NumberLong(&quot;7308405316679414687&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166170 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166170 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166170 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166170 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166170 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358180102000, 1710), &quot;h&quot; : NumberLong(&quot;3814167846358794846&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166102 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166102 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166102 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166102 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166102 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358180154000, 1605), &quot;h&quot; : NumberLong(&quot;-8728984085139165017&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166096 }
&lt;p&gt; } }&lt;br/&gt;
{ &quot;ts&quot; : Timestamp(1358180158000, 669), &quot;h&quot; : NumberLong(&quot;-4665390581863594269&quot;), &quot;v&quot; : 2, &quot;op&quot; : &quot;u&quot;, &quot;ns&quot; : &quot;test.test&quot;, &quot;o2&quot; : &lt;/p&gt;
{ &quot;_id&quot; : &quot;2013-01-14_40b2d10559dd731750839a20b78ac075_331282&quot; }
&lt;p&gt;, &quot;o&quot; : { &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166117 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166117 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166117 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166117 }
&lt;p&gt;, &quot;$set&quot; : &lt;/p&gt;
{ &quot;col4&quot; : 1358166117 }
&lt;p&gt; } }&lt;/p&gt;</description>
                <environment>CentOS 6.3</environment>
        <key id="63111">SERVER-8313</key>
            <summary>Why slave always crash due to duplicated key?</summary>
                <type id="6" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14720&amp;avatarType=issuetype">Question</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="4">Incomplete</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="dongzaixx">Dong Wei</reporter>
                        <labels>
                    </labels>
                <created>Thu, 24 Jan 2013 06:37:43 +0000</created>
                <updated>Wed, 10 Dec 2014 23:18:09 +0000</updated>
                            <resolved>Mon, 28 Oct 2013 00:33:37 +0000</resolved>
                                    <version>2.2.2</version>
                                                                        <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="523874" author="niccottrell" created="Wed, 26 Mar 2014 18:25:21 +0000"  >&lt;p&gt;Oh, and journalling is enabled on this secondary - pretty much all settings are default.&lt;/p&gt;</comment>
                            <comment id="523873" author="niccottrell" created="Wed, 26 Mar 2014 18:24:01 +0000"  >&lt;p&gt;Forgot to mention that the hard drive on this node become full so I suspect something went wrong with the replication from the primary and it thinks it hasn&apos;t created this document here yet, and went it does it fails. I&apos;m going to wipe the data on this secondary and let it resync. That has worked before when I had a similar problem.&lt;/p&gt;</comment>
                            <comment id="523867" author="niccottrell" created="Wed, 26 Mar 2014 18:19:31 +0000"  >&lt;p&gt;I just got something very similar running on 2.4.9:&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;Wed Mar 26 19:10:34.679 [conn27184]  authenticate db: local { authenticate: 1, nonce: &quot;7a00a63fdb203376&quot;, user: &quot;__system&quot;, key: &quot;87b2b9b609ad4dbbbb097cf01e869161&quot; }&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;Wed Mar 26 19:10:34.696 [initandlisten] connection accepted from 46.4.84.213:40416 #27185 (53 connections now open)&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;Wed Mar 26 19:10:34.696 [conn27184] end connection 46.4.84.213:40415 (51 connections now open)&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;Wed Mar 26 19:10:34.697 [conn27185]  authenticate db: local { authenticate: 1, nonce: &quot;157fe2c22f44726a&quot;, user: &quot;__system&quot;, key: &quot;b68d5e327d66b340d47a5610f619315b&quot; }&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;Wed Mar 26 19:10:34.702 [initandlisten] connection accepted from 46.4.84.213:40417 #27186 (53 connections now open)&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;Wed Mar 26 19:10:34.702 [conn27185] end connection 46.4.84.213:40416 (52 connections now open)&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;Wed Mar 26 19:10:34.703 [conn27186]  authenticate db: local { authenticate: 1, nonce: &quot;27217002242fa2c5&quot;, user: &quot;__system&quot;, key: &quot;2a7712eaff1b0076c3fa81b578560e28&quot; }&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;Wed Mar 26 19:10:34.706 [conn27186] end connection 46.4.84.213:40417 (51 connections now open)&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;Wed Mar 26 19:10:34.715 [initandlisten] connection accepted from 46.4.84.213:40418 #27187 (52 connections now open)&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;Wed Mar 26 19:10:34.717 [conn27187]  authenticate db: local { authenticate: 1, nonce: &quot;70d92ee62a56efa2&quot;, user: &quot;__system&quot;, key: &quot;06192578907d970d2b23f8981da49302&quot; }&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;Wed Mar 26 19:10:35.140 [repl writer worker 3] ERROR: writer worker caught exception: E11000 duplicate key error index: jerome5.TranslationQueue.$tl_1_g_1_sl_1_st_1  dup key: { : null, : null, : null, : null } on: { ts: Timestamp 1395857435000|78, h: -2353438816918522240, v: 2, op: &quot;u&quot;, ns: &quot;jerome5.TranslationQueue&quot;, o2: { _id: ObjectId(&apos;5332b1b61aff1b5d3e0add87&apos;) }, o: { $set: { count: 2, lr: new Date(1395857435015) } } }&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;Wed Mar 26 19:10:35.140 [repl writer worker 3]   Fatal Assertion 16360&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;0xde46e1 0xda44d3 0xc2ca7c 0xdb2021 0xe2cf69 0x7f6ef772d9d1 0x7f6ef6ad2b6d &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; /usr/bin/mongod(_ZN5mongo15printStackTraceERSo+0x21) [0xde46e1]&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; /usr/bin/mongod(_ZN5mongo13fassertFailedEi+0xa3) [0xda44d3]&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; /usr/bin/mongod(_ZN5mongo7replset14multiSyncApplyERKSt6vectorINS_7BSONObjESaIS2_EEPNS0_8SyncTailE+0x12c) [0xc2ca7c]&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; /usr/bin/mongod(_ZN5mongo10threadpool6Worker4loopEv+0x281) [0xdb2021]&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; /usr/bin/mongod() [0xe2cf69]&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; /lib64/libpthread.so.0(+0x79d1) [0x7f6ef772d9d1]&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; /lib64/libc.so.6(clone+0x6d) [0x7f6ef6ad2b6d]&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;Wed Mar 26 19:10:35.142 [repl writer worker 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;&amp;nbsp;&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;***aborting after fassert() failure&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;&amp;nbsp;&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;&amp;nbsp;&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;Wed Mar 26 19:10:35.142 Got signal: 6 (Aborted).&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;&amp;nbsp;&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;Wed Mar 26 19:10:35.143 Backtrace:&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;0xde46e1 0x6d06c9 0x7f6ef6a1c9a0 0x7f6ef6a1c925 0x7f6ef6a1e105 0xda450e 0xc2ca7c 0xdb2021 0xe2cf69 0x7f6ef772d9d1 0x7f6ef6ad2b6d &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; /usr/bin/mongod(_ZN5mongo15printStackTraceERSo+0x21) [0xde46e1]&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; /usr/bin/mongod(_ZN5mongo10abruptQuitEi+0x399) [0x6d06c9]&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; /lib64/libc.so.6(+0x329a0) [0x7f6ef6a1c9a0]&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; /lib64/libc.so.6(gsignal+0x35) [0x7f6ef6a1c925]&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; /lib64/libc.so.6(abort+0x175) [0x7f6ef6a1e105]&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; /usr/bin/mongod(_ZN5mongo13fassertFailedEi+0xde) [0xda450e]&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; /usr/bin/mongod(_ZN5mongo7replset14multiSyncApplyERKSt6vectorINS_7BSONObjESaIS2_EEPNS0_8SyncTailE+0x12c) [0xc2ca7c]&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; /usr/bin/mongod(_ZN5mongo10threadpool6Worker4loopEv+0x281) [0xdb2021]&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; /usr/bin/mongod() [0xe2cf69]&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; /lib64/libpthread.so.0(+0x79d1) [0x7f6ef772d9d1]&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; /lib64/libc.so.6(clone+0x6d) [0x7f6ef6ad2b6d]&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;Prior to this, we see hundreds of &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;Wed Mar 26 19:10:34.351 [conn27175] end connection 46.4.84.213:40391 (52 connections now open)&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;Wed Mar 26 19:10:34.353 [conn27176]  authenticate db: local { authenticate: 1, nonce: &quot;2459cc473977ebcd&quot;, user: &quot;__system&quot;, key: &quot;479ac7d29cb0d908aa9d120d7fbcb8be&quot; }&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;Wed Mar 26 19:10:34.367 [initandlisten] connection accepted from 46.4.84.213:40395 #27177 (53 connections now open)&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;Wed Mar 26 19:10:34.367 [conn27176] end connection 46.4.84.213:40393 (52 connections now open)&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;Wed Mar 26 19:10:34.368 [conn27177]  authenticate db: local { authenticate: 1, nonce: &quot;66b4dc583bcef4b6&quot;, user: &quot;__system&quot;, key: &quot;c12ce657ce342db7952e1e1998184832&quot; }&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;Wed Mar 26 19:10:34.375 [initandlisten] connection accepted from 46.4.84.213:40397 #27178 (53 connections now open)&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;Wed Mar 26 19:10:34.375 [conn27177] end connection 46.4.84.213:40395 (52 connections now open)&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;Wed Mar 26 19:10:34.376 [conn27178]  authenticate db: local { authenticate: 1, nonce: &quot;7e7e4da7a7db32e2&quot;, user: &quot;__system&quot;, key: &quot;4b739971b2257ae5b41108effb39abbb&quot; }&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;Wed Mar 26 19:10:34.391 [initandlisten] connection accepted from 46.4.84.213:40399 #27179 (53 connections now open)&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;Wed Mar 26 19:10:34.392 [conn27178] end connection 46.4.84.213:40397 (52 connections now open)&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;Wed Mar 26 19:10:34.393 [conn27179]  authenticate db: local { authenticate: 1, nonce: &quot;a8a22da45f87c7ed&quot;, user: &quot;__system&quot;, key: &quot;97b277b9c0f1dc8342609081a5137f8f&quot; }&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;Wed Mar 26 19:10:34.400 [initandlisten] connection accepted from 46.4.84.213:40401 #27180 (53 connections now open)&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;Wed Mar 26 19:10:34.400 [conn27179] end connection 46.4.84.213:40399 (52 connections now open)&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;Wed Mar 26 19:10:34.401 [conn27180]  authenticate db: local { authenticate: 1, nonce: &quot;3765611158fc44ab&quot;, user: &quot;__system&quot;, key: &quot;7e62a1a32b123460a0aba15f694c3911&quot; }&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;Wed Mar 26 19:10:34.415 [initandlisten] connection accepted from 46.4.84.213:40403 #27181 (53 connections now open)&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;Wed Mar 26 19:10:34.415 [conn27180] end connection 46.4.84.213:40401 (51 connections now open)&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;Wed Mar 26 19:10:34.417 [conn27181]  authenticate db: local { authenticate: 1, nonce: &quot;c4d2cdd593201728&quot;, user: &quot;__system&quot;, key: &quot;8060ce358c0050444663adb8f06d1eac&quot; }&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;Wed Mar 26 19:10:34.425 [initandlisten] connection accepted from 46.4.84.213:40405 #27182 (53 connections now open)&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;Wed Mar 26 19:10:34.425 [conn27181] end connection 46.4.84.213:40403 (51 connections now open)&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;Wed Mar 26 19:10:34.426 [conn27182]  authenticate db: local { authenticate: 1, nonce: &quot;a5297100e5ad4ae2&quot;, user: &quot;__system&quot;, key: &quot;67b372b789ebe0de4bc3ea47b3c94502&quot; }&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;Wed Mar 26 19:10:34.587 [initandlisten] connection accepted from 46.4.84.213:40409 #27183 (53 connections now open)&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;Wed Mar 26 19:10:34.587 [conn27182] end connection 46.4.84.213:40405 (51 connections now open)&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;Wed Mar 26 19:10:34.589 [conn27183]  authenticate db: local { authenticate: 1, nonce: &quot;312985067c35f6fb&quot;, user: &quot;__system&quot;, key: &quot;b82aa9474d5540db1b8750814f939573&quot; }&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;Wed Mar 26 19:10:34.678 [initandlisten] connection accepted from 46.4.84.213:40415 #27184 (53 connections now open)&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;which looks like failed connections from another server with a mongos and another secondary for this RS.&lt;/p&gt;</comment>
                            <comment id="447365" author="stennie" created="Mon, 28 Oct 2013 00:33:37 +0000"  >&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I&apos;m closing this issue due to inactivity.&lt;/p&gt;

&lt;p&gt;If you are still seeing this issue (particularly with a newer version of MongoDB, such as 2.4.x) please feel free to open a new issue or comment on this one with the relevant details.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br/&gt;
Stephen&lt;/p&gt;</comment>
                            <comment id="251891" author="renctan" created="Mon, 28 Jan 2013 17:06:47 +0000"  >&lt;p&gt;This looks very similar to &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-7186&quot; title=&quot;Batched oplog application increases frequency of idempotency violations&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-7186&quot;&gt;&lt;del&gt;SERVER-7186&lt;/del&gt;&lt;/a&gt;. But it should have been fixed in 2.2.2. Can you confirm what version the secondary was running on?&lt;/p&gt;</comment>
                            <comment id="251487" author="dongzaixx" created="Mon, 28 Jan 2013 08:27:22 +0000"  >&lt;p&gt;no reply?&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>6.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 28 Jan 2013 17:06:47 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        9 years, 47 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>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>
                            9 years, 47 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_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>dongzaixx</customfieldvalue>
            <customfieldvalue>niccottrell</customfieldvalue>
            <customfieldvalue>randolph@mongodb.com</customfieldvalue>
            <customfieldvalue>stephen.steneker@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrja1r:</customfieldvalue>

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

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

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