<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:00:50 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-2670] Assertion failure _a != -1 db/pdfile.h 425</title>
                <link>https://jira.mongodb.org/browse/SERVER-2670</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;Running a count on a newly created index caused an assertion. mongod then complained the db was corrupt and to run a repair, which I did, which resolved the issue.&lt;/p&gt;

&lt;p&gt;pb1:PRIMARY&amp;gt; use postbacks&lt;br/&gt;
switched to db postbacks&lt;br/&gt;
db.createCollection(&quot;postbacks&quot;, &lt;/p&gt;
{capped:true, size:2147483648}
&lt;p&gt;) // 2GB      &lt;/p&gt;
{ &quot;ok&quot; : 1 }
&lt;p&gt;pb1:PRIMARY&amp;gt; db.postbacks.ensureIndex(&lt;/p&gt;
{ &apos;_id&apos; : 1}
&lt;p&gt;, &lt;/p&gt;
{background: true}
&lt;p&gt;)&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.ensureIndex(&lt;/p&gt;
{ &apos;p&apos; : 1}
&lt;p&gt;, &lt;/p&gt;
{background: true}
&lt;p&gt;)&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.stats()&lt;br/&gt;
{&lt;br/&gt;
	&quot;ns&quot; : &quot;postbacks.postbacks&quot;,&lt;br/&gt;
	&quot;count&quot; : 0,&lt;br/&gt;
	&quot;size&quot; : 0,&lt;br/&gt;
	&quot;storageSize&quot; : 2147483904,&lt;br/&gt;
	&quot;numExtents&quot; : 2,&lt;br/&gt;
	&quot;nindexes&quot; : 2,&lt;br/&gt;
	&quot;lastExtentSize&quot; : 1057040,&lt;br/&gt;
	&quot;paddingFactor&quot; : 1,&lt;br/&gt;
	&quot;flags&quot; : 1,&lt;br/&gt;
	&quot;totalIndexSize&quot; : 16384,&lt;br/&gt;
	&quot;indexSizes&quot; : &lt;/p&gt;
{
		&quot;_id_&quot; : 8192,
		&quot;p_1&quot; : 8192
	}
&lt;p&gt;,&lt;br/&gt;
	&quot;capped&quot; : 1,&lt;br/&gt;
	&quot;max&quot; : 2147483647,&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
}&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.count(&lt;/p&gt;
{p: false}
&lt;p&gt;)&lt;br/&gt;
0&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.count(&lt;/p&gt;
{p: false}
&lt;p&gt;)&lt;br/&gt;
0&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.count(&lt;/p&gt;
{p: false}
&lt;p&gt;)&lt;br/&gt;
0&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.count()&lt;br/&gt;
3944&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.stats()&lt;br/&gt;
{&lt;br/&gt;
	&quot;ns&quot; : &quot;postbacks.postbacks&quot;,&lt;br/&gt;
	&quot;count&quot; : 4522,&lt;br/&gt;
	&quot;size&quot; : 186458896,&lt;br/&gt;
	&quot;avgObjSize&quot; : 41233.72313135781,&lt;br/&gt;
	&quot;storageSize&quot; : 2147483904,&lt;br/&gt;
	&quot;numExtents&quot; : 2,&lt;br/&gt;
	&quot;nindexes&quot; : 2,&lt;br/&gt;
	&quot;lastExtentSize&quot; : 1057040,&lt;br/&gt;
	&quot;paddingFactor&quot; : 1,&lt;br/&gt;
	&quot;flags&quot; : 1,&lt;br/&gt;
	&quot;totalIndexSize&quot; : 278528,&lt;br/&gt;
	&quot;indexSizes&quot; : &lt;/p&gt;
{
		&quot;_id_&quot; : 270336,
		&quot;p_1&quot; : 8192
	}
&lt;p&gt;,&lt;br/&gt;
	&quot;capped&quot; : 1,&lt;br/&gt;
	&quot;max&quot; : 2147483647,&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
}&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.dropIndexes()&lt;br/&gt;
{&lt;br/&gt;
	&quot;nIndexesWas&quot; : 2,&lt;br/&gt;
	&quot;msg&quot; : &quot;non-_id indexes dropped for collection&quot;,&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
}&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.ensureIndex(&lt;/p&gt;
{ &apos;p&apos; : 1}
&lt;p&gt;, &lt;/p&gt;
{background: true}
&lt;p&gt;)&lt;br/&gt;
interrupted at shutdown&lt;br/&gt;
pb1:PRIMARY&amp;gt; use sd&lt;br/&gt;
switched to db sd&lt;br/&gt;
Thu Mar  3 00:32:42 DBClientCursor::init call() failed&lt;br/&gt;
&amp;gt; use postbacks&lt;br/&gt;
switched to db postbacks&lt;br/&gt;
Thu Mar  3 00:32:45 trying reconnect to 127.0.0.1&lt;br/&gt;
Thu Mar  3 00:32:45 reconnect 127.0.0.1 ok&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.repairDatabase()&lt;/p&gt;
{ &quot;ok&quot; : 1 }
&lt;p&gt;pb1:PRIMARY&amp;gt; db.postbacks.stats()&lt;br/&gt;
{&lt;br/&gt;
	&quot;ns&quot; : &quot;postbacks.postbacks&quot;,&lt;br/&gt;
	&quot;count&quot; : 12955,&lt;br/&gt;
	&quot;size&quot; : 548969696,&lt;br/&gt;
	&quot;avgObjSize&quot; : 42375.1212659205,&lt;br/&gt;
	&quot;storageSize&quot; : 2147483904,&lt;br/&gt;
	&quot;numExtents&quot; : 2,&lt;br/&gt;
	&quot;nindexes&quot; : 0,&lt;br/&gt;
	&quot;lastExtentSize&quot; : 1057040,&lt;br/&gt;
	&quot;paddingFactor&quot; : 1,&lt;br/&gt;
	&quot;flags&quot; : 0,&lt;br/&gt;
	&quot;totalIndexSize&quot; : 0,&lt;br/&gt;
	&quot;indexSizes&quot; : {&lt;/p&gt;

&lt;p&gt;	},&lt;br/&gt;
	&quot;capped&quot; : 1,&lt;br/&gt;
	&quot;max&quot; : 2147483647,&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
}&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.ensureIndex(&lt;/p&gt;
{ &apos;_id&apos; : 1}
&lt;p&gt;, &lt;/p&gt;
{background: true}
&lt;p&gt;)&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.ensureIndex(&lt;/p&gt;
{ &apos;p&apos; : 1}
&lt;p&gt;, &lt;/p&gt;
{background: true}
&lt;p&gt;)&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.stats()                                      &lt;br/&gt;
{&lt;br/&gt;
	&quot;ns&quot; : &quot;postbacks.postbacks&quot;,&lt;br/&gt;
	&quot;count&quot; : 12955,&lt;br/&gt;
	&quot;size&quot; : 548969696,&lt;br/&gt;
	&quot;avgObjSize&quot; : 42375.1212659205,&lt;br/&gt;
	&quot;storageSize&quot; : 2147483904,&lt;br/&gt;
	&quot;numExtents&quot; : 2,&lt;br/&gt;
	&quot;nindexes&quot; : 2,&lt;br/&gt;
	&quot;lastExtentSize&quot; : 1057040,&lt;br/&gt;
	&quot;paddingFactor&quot; : 1,&lt;br/&gt;
	&quot;flags&quot; : 1,&lt;br/&gt;
	&quot;totalIndexSize&quot; : 876544,&lt;br/&gt;
	&quot;indexSizes&quot; : &lt;/p&gt;
{
		&quot;_id_&quot; : 491520,
		&quot;p_1&quot; : 385024
	}
&lt;p&gt;,&lt;br/&gt;
	&quot;capped&quot; : 1,&lt;br/&gt;
	&quot;max&quot; : 2147483647,&lt;br/&gt;
	&quot;ok&quot; : 1&lt;br/&gt;
}&lt;br/&gt;
pb1:PRIMARY&amp;gt; db.postbacks.count(&lt;/p&gt;
{p: false}
&lt;p&gt;)&lt;br/&gt;
12955&lt;/p&gt;</description>
                <environment></environment>
        <key id="14970">SERVER-2670</key>
            <summary>Assertion failure _a != -1 db/pdfile.h 425</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="5">Cannot Reproduce</resolution>
                                        <assignee username="eliot">Eliot Horowitz</assignee>
                                    <reporter username="boxedice">David Mytton</reporter>
                        <labels>
                    </labels>
                <created>Thu, 3 Mar 2011 00:50:51 +0000</created>
                <updated>Fri, 30 Mar 2012 14:37:14 +0000</updated>
                            <resolved>Thu, 17 Mar 2011 18:30:58 +0000</resolved>
                                    <version>1.8.0-rc0</version>
                                                                        <votes>0</votes>
                                    <watches>0</watches>
                                                                                                                <comments>
                            <comment id="25260" author="eliot" created="Fri, 4 Mar 2011 18:43:07 +0000"  >&lt;p&gt;There were a number of fixes that might be related in 1.8.0-rc1 going out shortly.&lt;br/&gt;
I can&apos;t reproduce at all, so would be great if you could try with that in a few hours&lt;/p&gt;</comment>
                            <comment id="25249" author="boxedice" created="Fri, 4 Mar 2011 17:09:13 +0000"  >&lt;p&gt;This was a new database on a new mongo instance. Dropping/re-indexing works fine without --dur enabled but with --dur it asserts.&lt;/p&gt;</comment>
                            <comment id="25248" author="eliot" created="Fri, 4 Mar 2011 16:53:41 +0000"  >&lt;p&gt;Is there any chance this db was corrupt before creating the index?&lt;br/&gt;
Can you try again?  i.e. drop index, re-add, and see if it works&lt;/p&gt;</comment>
                            <comment id="25163" author="boxedice" created="Thu, 3 Mar 2011 18:42:34 +0000"  >&lt;p&gt;Done.&lt;/p&gt;

&lt;p&gt;david@pb1b /mongodbdata/dump/dump/postbacks: scp -P 722 postbacks.bson david@www.10gen.com:&lt;br/&gt;
Enter passphrase for key &apos;/home/david/.ssh/id_rsa&apos;: &lt;br/&gt;
david@www.10gen.com&apos;s password: &lt;br/&gt;
postbacks.bson                                100% 2127MB   2.8MB/s   12:54 &lt;/p&gt;</comment>
                            <comment id="25160" author="eliot" created="Thu, 3 Mar 2011 18:24:42 +0000"  >&lt;p&gt;Sorry, should be&lt;/p&gt;


&lt;p&gt;scp -P 722  yourfile  david@www.10gen.com:&lt;/p&gt;

&lt;p&gt;don&apos;t put anything after the colon&lt;/p&gt;</comment>
                            <comment id="25159" author="boxedice" created="Thu, 3 Mar 2011 18:09:55 +0000"  >&lt;p&gt;david@pb1b /mongodbdata/dump/dump/postbacks: scp -v -P 722 david@www.10gen.com: postbacks.bson&lt;br/&gt;
Executing: program /usr/bin/ssh host www.10gen.com, user david, command scp -v -f .&lt;br/&gt;
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008&lt;br/&gt;
debug1: Reading configuration data /etc/ssh/ssh_config&lt;br/&gt;
debug1: Applying options for *&lt;br/&gt;
debug1: Connecting to www.10gen.com &lt;span class=&quot;error&quot;&gt;&amp;#91;75.101.156.249&amp;#93;&lt;/span&gt; port 722.&lt;br/&gt;
debug1: Connection established.&lt;br/&gt;
debug1: identity file /home/david/.ssh/identity type -1&lt;br/&gt;
debug1: identity file /home/david/.ssh/id_rsa type -1&lt;br/&gt;
debug1: identity file /home/david/.ssh/id_dsa type -1&lt;br/&gt;
debug1: loaded 3 keys&lt;br/&gt;
debug1: Remote protocol version 2.0, remote software version SSHD-CORE-0.3.0&lt;br/&gt;
debug1: no match: SSHD-CORE-0.3.0&lt;br/&gt;
debug1: Enabling compatibility mode for protocol 2.0&lt;br/&gt;
debug1: Local version string SSH-2.0-OpenSSH_4.3&lt;br/&gt;
debug1: SSH2_MSG_KEXINIT sent&lt;br/&gt;
debug1: SSH2_MSG_KEXINIT received&lt;br/&gt;
debug1: kex: server-&amp;gt;client aes128-cbc hmac-md5 none&lt;br/&gt;
debug1: kex: client-&amp;gt;server aes128-cbc hmac-md5 none&lt;br/&gt;
debug1: sending SSH2_MSG_KEXDH_INIT&lt;br/&gt;
debug1: expecting SSH2_MSG_KEXDH_REPLY&lt;br/&gt;
debug1: Host &apos;www.10gen.com&apos; is known and matches the DSA host key.&lt;br/&gt;
debug1: Found key in /home/david/.ssh/known_hosts:14&lt;br/&gt;
debug1: ssh_dss_verify: signature correct&lt;br/&gt;
debug1: SSH2_MSG_NEWKEYS sent&lt;br/&gt;
debug1: expecting SSH2_MSG_NEWKEYS&lt;br/&gt;
debug1: SSH2_MSG_NEWKEYS received&lt;br/&gt;
debug1: SSH2_MSG_SERVICE_REQUEST sent&lt;br/&gt;
debug1: SSH2_MSG_SERVICE_ACCEPT received&lt;br/&gt;
debug1: Authentications that can continue: password,publickey&lt;br/&gt;
debug1: Next authentication method: publickey&lt;br/&gt;
debug1: Trying private key: /home/david/.ssh/identity&lt;br/&gt;
debug1: Trying private key: /home/david/.ssh/id_rsa&lt;br/&gt;
debug1: PEM_read_PrivateKey failed&lt;br/&gt;
debug1: read PEM private key done: type &amp;lt;unknown&amp;gt;&lt;br/&gt;
Enter passphrase for key &apos;/home/david/.ssh/id_rsa&apos;: &lt;br/&gt;
debug1: read PEM private key done: type RSA&lt;br/&gt;
debug1: Authentications that can continue: password,publickey&lt;br/&gt;
debug1: Trying private key: /home/david/.ssh/id_dsa&lt;br/&gt;
debug1: Next authentication method: password&lt;br/&gt;
david@www.10gen.com&apos;s password: &lt;br/&gt;
debug1: Authentication succeeded (password).&lt;br/&gt;
debug1: channel 0: new &lt;span class=&quot;error&quot;&gt;&amp;#91;client-session&amp;#93;&lt;/span&gt;&lt;br/&gt;
debug1: Entering interactive session.&lt;br/&gt;
debug1: Sending environment.&lt;br/&gt;
debug1: Sending env LANG = en_US.UTF-8&lt;br/&gt;
debug1: Sending command: scp -v -f .&lt;br/&gt;
dispatch_protocol_error: type 100 seq 8&lt;br/&gt;
debug1: channel 0: free: client-session, nchannels 1&lt;br/&gt;
debug1: fd 0 clearing O_NONBLOCK&lt;br/&gt;
debug1: fd 1 clearing O_NONBLOCK&lt;br/&gt;
Connection to www.10gen.com closed by remote host.&lt;br/&gt;
debug1: Transferred: stdin 0, stdout 0, stderr 52 bytes in 0.1 seconds&lt;br/&gt;
debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 557.4&lt;br/&gt;
debug1: Exit status -1&lt;/p&gt;</comment>
                            <comment id="25158" author="eliot" created="Thu, 3 Mar 2011 18:02:03 +0000"  >&lt;p&gt;Correct, for the public its write only.&lt;/p&gt;</comment>
                            <comment id="25157" author="boxedice" created="Thu, 3 Mar 2011 17:59:18 +0000"  >&lt;p&gt;Will do. This isn&apos;t publicly accessible?&lt;/p&gt;</comment>
                            <comment id="25156" author="eliot" created="Thu, 3 Mar 2011 17:56:45 +0000"  >&lt;p&gt;Can you scp to us?&lt;/p&gt;

&lt;p&gt;scp -P 722 david@www.10gen.com:&lt;br/&gt;
&amp;lt;any password&amp;gt;&lt;/p&gt;</comment>
                            <comment id="25154" author="boxedice" created="Thu, 3 Mar 2011 17:52:48 +0000"  >&lt;p&gt;It&apos;s a couple of GB:&lt;/p&gt;

&lt;p&gt;david@pb1b /mongodbdata/dump: ls -alh dump/postbacks/&lt;br/&gt;
total 2.1G&lt;br/&gt;
drwxrwxr-x 2 david david   53 Mar  3 17:51 .&lt;br/&gt;
drwxrwxr-x 3 david david   22 Mar  3 17:49 ..&lt;br/&gt;
&lt;del&gt;rw-rw-r&lt;/del&gt;- 1 david david 2.1G Mar  3 17:51 postbacks.bson&lt;br/&gt;
&lt;del&gt;rw-rw-r&lt;/del&gt;- 1 david david  166 Mar  3 17:51 system.indexes.bson&lt;/p&gt;
</comment>
                            <comment id="25153" author="eliot" created="Thu, 3 Mar 2011 17:44:45 +0000"  >&lt;p&gt;Is this is a small collection?&lt;br/&gt;
If so, can we get a bsondump?&lt;/p&gt;</comment>
                            <comment id="25141" author="boxedice" created="Thu, 3 Mar 2011 10:52:58 +0000"  >&lt;p&gt;Actually scrap that, I can reproduce with both background and not. It&apos;s durability that makes the difference - enabled = crash. not enabled = no crash.&lt;/p&gt;</comment>
                            <comment id="25140" author="boxedice" created="Thu, 3 Mar 2011 10:50:28 +0000"  >&lt;p&gt;Seems to be related to using a background index - I can reproduce if I use background, but not if it&apos;s a regular blocking index creation.&lt;/p&gt;</comment>
                            <comment id="25126" author="boxedice" created="Thu, 3 Mar 2011 05:52:35 +0000"  >&lt;p&gt;It&apos;s either true or false. The whole doc itself is quite big though.&lt;/p&gt;</comment>
                            <comment id="25124" author="eliot" created="Thu, 3 Mar 2011 05:31:20 +0000"  >&lt;p&gt;What kind of field is &quot;p&quot;? &lt;br/&gt;
Is it possible its long?&lt;/p&gt;</comment>
                            <comment id="25115" author="boxedice" created="Thu, 3 Mar 2011 00:51:53 +0000"  >&lt;p&gt;Thu Mar  3 00:28:17 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; query postbacks.$cmd ntoreturn:1 command: &lt;/p&gt;
{ create: &quot;postbacks&quot;, capped: true, size: 2147483648.0, max: undefined }
&lt;p&gt; reslen:53 14390ms&lt;br/&gt;
Thu Mar  3 00:28:21 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn5237&amp;#93;&lt;/span&gt; getmore local.oplog.rs cid:6564990938122368607 getMore: { ts: &lt;/p&gt;
{ $gte: new Date(5579234990782153672) }
&lt;p&gt; }  bytes:139 nreturned:1 19197ms&lt;br/&gt;
Thu Mar  3 00:28:28 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; building new index on &lt;/p&gt;
{ _id: 1 }
&lt;p&gt; for postbacks.postbacks&lt;br/&gt;
Thu Mar  3 00:28:28 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; done for 0 records 0.05secs&lt;br/&gt;
Thu Mar  3 00:28:29 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; building new index on &lt;/p&gt;
{ p: 1.0 }
&lt;p&gt; for postbacks.postbacks background&lt;br/&gt;
Thu Mar  3 00:28:29 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; done for 0 records 0.014secs&lt;br/&gt;
Thu Mar  3 00:28:35 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; query postbacks.$cmd ntoreturn:1 command: &lt;/p&gt;
{ collstats: &quot;postbacks&quot;, scale: undefined }
&lt;p&gt; reslen:284 433ms&lt;br/&gt;
Thu Mar  3 00:28:35 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214372&amp;#93;&lt;/span&gt; query metrics.$cmd ntoreturn:1 command: &lt;/p&gt;
{ dbstats: 1 }
&lt;p&gt; reslen:224 1283ms&lt;br/&gt;
Thu Mar  3 00:28:54 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt;  postbacks.postbacks Assertion failure _a != -1 db/pdfile.h 425&lt;br/&gt;
0x55125e 0x562c61 0x71f157 0x78f4df 0x652eef 0x790c4a 0x796463 0x79a115 0x79c644 0x79d1e7 0x64c89b 0x7df348 0x7dbc52 0x7dcb95 0x644c55 0x649191 0x757995 0x759ec0 0x8a65ee 0x8b6a30 &lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo12sayDbContextEPKc+0xae) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x55125e&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo8assertedEPKcS1_j+0x111) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x562c61&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo11BtreeCursorC1EPNS_16NamespaceDetailsEiRKNS_12IndexDetailsERKN5boost10shared_ptrINS_16FieldRangeVectorEEEi+0xae7) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x71f157&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZNK5mongo9QueryPlan9newCursorERKNS_7DiskLocEi+0x9df) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x78f4df&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo7CountOp5_initEv+0x4f) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x652eef&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo12QueryPlanSet6Runner6initOpERNS_7QueryOpE+0x11a) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x790c4a&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo12QueryPlanSet6Runner3runEv+0x333) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x796463&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo12QueryPlanSet5runOpERNS_7QueryOpE+0x255) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x79a115&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo16MultiPlanScanner9runOpOnceERNS_7QueryOpE+0x64) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x79c644&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo16MultiPlanScanner5runOpERNS_7QueryOpE+0x17) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x79d1e7&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo8runCountEPKcRKNS_7BSONObjERSs+0x3cb) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x64c89b&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo8CmdCount3runERKSsRNS_7BSONObjERSsRNS_14BSONObjBuilderEb+0xa8) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x7df348&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo11execCommandEPNS_7CommandERNS_6ClientEiPKcRNS_7BSONObjERNS_14BSONObjBuilderEb+0x9e2) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x7dbc52&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo12_runCommandsEPKcRNS_7BSONObjERNS_10BufBuilderERNS_14BSONObjBuilderEbi+0x895) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x7dcb95&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo11runCommandsEPKcRNS_7BSONObjERNS_5CurOpERNS_10BufBuilderERNS_14BSONObjBuilderEbi+0x35) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x644c55&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(&lt;em&gt;ZN5mongo8runQueryERNS_7MessageERNS_12QueryMessageERNS_5CurOpES1&lt;/em&gt;+0x32e1) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x649191&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod &lt;span class=&quot;error&quot;&gt;&amp;#91;0x757995&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo16assembleResponseERNS_7MessageERNS_10DbResponseERKNS_8SockAddrE+0x5b0) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x759ec0&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(_ZN5mongo10connThreadEPNS_13MessagingPortE+0x21e) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x8a65ee&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/david/mongodb/latest/bin/mongod(thread_proxy+0x80) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x8b6a30&amp;#93;&lt;/span&gt;&lt;br/&gt;
Thu Mar  3 00:28:55 &lt;span class=&quot;error&quot;&gt;&amp;#91;conn214320&amp;#93;&lt;/span&gt; Count with ns: postbacks.postbacks and query: &lt;/p&gt;
{ p: false }
&lt;p&gt; failed with exception: exception: 0 assertion db/pdfile.h:425&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="10937" name="mongod.tar.gz" size="443323" author="boxedice" created="Thu, 3 Mar 2011 00:50:51 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>16.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 3 Mar 2011 05:31:20 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        12 years, 50 weeks, 5 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>ian@mongodb.com</customfieldvalue>

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

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

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

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

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

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