<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 04:02:27 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-23124] db.collection.count() returns -1</title>
                <link>https://jira.mongodb.org/browse/SERVER-23124</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;I have several collections in db. Mongo uses WiredTiger engine.&lt;br/&gt;
I removed all records in &quot;swipes&quot; collection (all at once).&lt;/p&gt;

&lt;p&gt;then tried to run db.swipes.count() and it returned -1.&lt;br/&gt;
&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/1_count_returns_minus_1.png&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/1_count_returns_minus_1.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then I made dump of swipes collection on remote server:&lt;br/&gt;
&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/2_dump_buggy_collection.png&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/2_dump_buggy_collection.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Downloaded, unpacked and tried to restore that collection on local machine:&lt;br/&gt;
&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/3_attemt_to_restore.png&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/3_attemt_to_restore.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;On remote and local machines I use Mongo 3.2.4.&lt;/p&gt;
</description>
                <environment></environment>
        <key id="272281">SERVER-23124</key>
            <summary>db.collection.count() returns -1</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="3">Duplicate</resolution>
                                        <assignee username="kelsey.schubert@mongodb.com">Kelsey Schubert</assignee>
                                    <reporter username="airs0urce">airs0urce</reporter>
                        <labels>
                    </labels>
                <created>Mon, 14 Mar 2016 15:51:06 +0000</created>
                <updated>Tue, 16 Jul 2019 04:52:21 +0000</updated>
                            <resolved>Wed, 16 Mar 2016 20:02:10 +0000</resolved>
                                    <version>3.2.4</version>
                                                    <component>Querying</component>
                                        <votes>0</votes>
                                    <watches>10</watches>
                                                                                                                <comments>
                            <comment id="2328015" author="airs0urce" created="Tue, 16 Jul 2019 04:52:09 +0000"  >&lt;p&gt;I was able to reproduce it on 4.0.10 and validate() fixed it btw:&lt;/p&gt;


&lt;p&gt;rs0:PRIMARY&amp;gt; db.error_log.count({})&lt;br/&gt;
-1&lt;br/&gt;
rs0:PRIMARY&amp;gt; version()&lt;br/&gt;
4.0.10&lt;br/&gt;
rs0:PRIMARY&amp;gt; db.error_log.validate()&lt;br/&gt;
{&lt;br/&gt;
	&quot;ns&quot; : &quot;nearby_main.error_log&quot;,&lt;br/&gt;
	&quot;nInvalidDocuments&quot; : NumberLong(0),&lt;br/&gt;
	&quot;nrecords&quot; : 0,&lt;br/&gt;
	&quot;nIndexes&quot; : 1,&lt;br/&gt;
	&quot;keysPerIndex&quot; : &lt;/p&gt;
{
		&quot;_id_&quot; : 0
	}
&lt;p&gt;,&lt;br/&gt;
	&quot;valid&quot; : true,&lt;br/&gt;
	&quot;warnings&quot; : [&lt;br/&gt;
		&quot;Some checks omitted for speed. use &lt;/p&gt;
{full:true}
&lt;p&gt; option to do more thorough scan.&quot;&lt;br/&gt;
	],&lt;br/&gt;
	&quot;errors&quot; : [ ],&lt;br/&gt;
	&quot;extraIndexEntries&quot; : [ ],&lt;br/&gt;
	&quot;missingIndexEntries&quot; : [ ],&lt;br/&gt;
	&quot;ok&quot; : 1,&lt;br/&gt;
	&quot;operationTime&quot; : Timestamp(1563252522, 16),&lt;br/&gt;
	&quot;$clusterTime&quot; : {&lt;br/&gt;
		&quot;clusterTime&quot; : Timestamp(1563252522, 16),&lt;br/&gt;
		&quot;signature&quot; : &lt;/p&gt;
{
			&quot;hash&quot; : BinData(0,&quot;AAAAAAAAAAAAAAAAAAAAAAAAAAA=&quot;),
			&quot;keyId&quot; : NumberLong(0)
		}
&lt;p&gt;	}&lt;br/&gt;
}&lt;br/&gt;
rs0:PRIMARY&amp;gt; db.error_log.count({})&lt;br/&gt;
0&lt;br/&gt;
rs0:PRIMARY&amp;gt; &lt;/p&gt;
</comment>
                            <comment id="1205874" author="thomas.schubert" created="Wed, 16 Mar 2016 20:01:49 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=airs0urce&quot; class=&quot;user-hover&quot; rel=&quot;airs0urce&quot;&gt;airs0urce&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;Thank you for help investigating this issue. We are tracking this behavior in &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-20063&quot; title=&quot;WiredTiger collection size cache can be inaccurate &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-20063&quot;&gt;&lt;del&gt;SERVER-20063&lt;/del&gt;&lt;/a&gt;, and I have recently attached a script which reproduces this behavior on that ticket. Please watch &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-20063&quot; title=&quot;WiredTiger collection size cache can be inaccurate &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-20063&quot;&gt;&lt;del&gt;SERVER-20063&lt;/del&gt;&lt;/a&gt; for updates and feel free to vote for it. &lt;/p&gt;

&lt;p&gt;If you encounter this behavior in the future, I would recommend executing &lt;tt&gt;db.collection.validate()&lt;/tt&gt; to correct the issue. Additional information about the behavior of &lt;tt&gt;count()&lt;/tt&gt; can be found in our documentation &lt;a href=&quot;https://docs.mongodb.org/manual/reference/command/count/#behavior&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Thank you,&lt;br/&gt;
 Thomas&lt;/p&gt;</comment>
                            <comment id="1205560" author="airs0urce" created="Wed, 16 Mar 2016 17:21:02 +0000"  >&lt;p&gt;Unfortunately now I can&apos;t as this is development server and somebody did some actions and added records in that collection.&lt;br/&gt;
The only thing I can tell that after adding record it works as before. I can clear it again and it shows 0 records, but not -1.&lt;/p&gt;</comment>
                            <comment id="1205502" author="thomas.schubert" created="Wed, 16 Mar 2016 16:44:31 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=airs0urce&quot; class=&quot;user-hover&quot; rel=&quot;airs0urce&quot;&gt;airs0urce&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;Can you please execute &lt;a href=&quot;https://docs.mongodb.org/manual/reference/method/db.collection.validate/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;db.swipes.validate()&lt;/a&gt; and provide the output? Please confirm if the issue persists after validating the collection.&lt;/p&gt;

&lt;p&gt;Thank you,&lt;br/&gt;
Thomas&lt;/p&gt;</comment>
                            <comment id="1203486" author="airs0urce" created="Tue, 15 Mar 2016 09:01:16 +0000"  >&lt;p&gt;Yes, it still returns -1.&lt;br/&gt;
This is stats:&lt;br/&gt;
&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/mongo_collection_stats.txt&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/mongo_collection_stats.txt&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Note: I replaced db name by &lt;/p&gt;
{DATABASE_NAME_HERE}</comment>
                            <comment id="1203082" author="thomas.schubert" created="Mon, 14 Mar 2016 21:34:25 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=airs0urce&quot; class=&quot;user-hover&quot; rel=&quot;airs0urce&quot;&gt;airs0urce&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;Please include the &lt;tt&gt;--archive&lt;/tt&gt; parameter when restoring the dump attached to this ticket:&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;mongorestore --archive=test.bson&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;2016-03-14T17:11:23.433-0400	setting number of parallel collections to number of parallel collections in archive (8)&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;2016-03-14T17:11:23.458-0400	creating intents for archive&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;2016-03-14T17:11:23.521-0400	reading metadata for nearby_afriflirt.swipes from archive &apos;test.bson&apos;&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;2016-03-14T17:11:23.567-0400	restoring nearby_afriflirt.swipes from archive &apos;test.bson&apos;&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;2016-03-14T17:11:23.875-0400	restoring indexes for collection nearby_afriflirt.swipes from metadata&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;2016-03-14T17:11:24.000-0400	finished restoring nearby_afriflirt.swipes (0 documents)&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;2016-03-14T17:11:24.000-0400	done&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;I successfully started a mongod with files from your dbpath. However, I was unable to observe the issue you describe where db.swipes.count() returns -1. On my instance it consistently returned 0. Since I was unable to reproduce this issue with your dataset, I will need some more information to continue to investigate this behavior.&lt;/p&gt;

&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Can you please confirm that you are still seeing this result on your remote server?&lt;/li&gt;
	&lt;li&gt;If so, can you please post the output of &lt;tt&gt;db.swipes.stats()&lt;/tt&gt; from your remote server?&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Thank you,&lt;br/&gt;
Thomas&lt;/p&gt;</comment>
                            <comment id="1202761" author="airs0urce" created="Mon, 14 Mar 2016 18:30:14 +0000"  >&lt;p&gt;Thomas,&lt;/p&gt;

&lt;p&gt;Tried to upload, but no luck: &lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/Screen%20Shot%202016-03-15%20at%201.24.15%20AM.png&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/Screen%20Shot%202016-03-15%20at%201.24.15%20AM.png&lt;/a&gt;&lt;br/&gt;
May be because this is 3.3GB.&lt;/p&gt;

&lt;p&gt;Instead I uploaded &quot;dbpath_archive_with_auth.txt&quot;. Inside this file you can see URL of gzipped dbpath folder.&lt;br/&gt;
So, download this file. I&apos;ll keep it on server for couple weeks.&lt;/p&gt;</comment>
                            <comment id="1202718" author="airs0urce" created="Mon, 14 Mar 2016 18:09:09 +0000"  >&lt;p&gt;Ok, packing dbpath folder, will upload after done.&lt;/p&gt;</comment>
                            <comment id="1202670" author="airs0urce" created="Mon, 14 Mar 2016 17:52:08 +0000"  >
&lt;p&gt;&amp;gt; How did you remove the documents in the swipes collection?&lt;br/&gt;
I did it using Rockmongo PHP gui. There is &quot;Clear&quot; link:&lt;br/&gt;
&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/Screen%20Shot%202016-03-15%20at%2012.25.13%20AM.png&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/Screen%20Shot%202016-03-15%20at%2012.25.13%20AM.png&lt;/a&gt;&lt;br/&gt;
I check source code and it runs &quot;delete&quot; on collection (with PHP driver) with empty criteria:&lt;br/&gt;
&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1875424/Screen%20Shot%202016-03-15%20at%2012.50.17%20AM.png&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://dl.dropboxusercontent.com/u/1875424/Screen%20Shot%202016-03-15%20at%2012.50.17%20AM.png&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Also: &lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;in that collection I had about 3 millions records.&lt;/li&gt;
	&lt;li&gt;When I click Clear I closed that tab with rockmongo when deletion is not finished. But usually it keeps running until all records removed (I can even see how amount of records decreases even if I closed tab), I did it many times before.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&amp;gt; Were there long running operations on the swipes collection when the documents were removed? eg. background index build?&lt;br/&gt;
There were no index creations for sure. And I almost sure that there were no any long operations. &lt;br/&gt;
This is development server and usually nothing big happens there.&lt;/p&gt;


&lt;p&gt;&amp;gt; Were there any unclean shutdowns or other errors logged by the server around this time?&lt;/p&gt;

&lt;p&gt;$ uptime&lt;br/&gt;
13:32:11 up 156 days, 20:11,  3 users,  load average: 0.10, 0.06, 0.09&lt;br/&gt;
I also asked our admins to send me system logs as I don&apos;t have access to them.&lt;/p&gt;

&lt;p&gt;&amp;gt; Have you manipulated (copied or moved) the underling database files?&lt;br/&gt;
Only thing - this database was moved from production server may be 5 months ago, can&apos;t tell you exactly.&lt;br/&gt;
But we use same mongo version on dev and production servers and I moved data with mongodump/mongorestore.&lt;/p&gt;

&lt;p&gt;&amp;gt; If this node is part of a replica set, are other members affected?&lt;br/&gt;
This node is not part of replica set&lt;/p&gt;</comment>
                            <comment id="1202598" author="thomas.schubert" created="Mon, 14 Mar 2016 17:02:15 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=airs0urce&quot; class=&quot;user-hover&quot; rel=&quot;airs0urce&quot;&gt;airs0urce&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;Additionally, can you please upload the dbpath of your remote server? &lt;/p&gt;

&lt;p&gt;I have created a &lt;a href=&quot;https://10gen-httpsupload.s3.amazonaws.com/upload_forms/a5f8beef-a476-440d-9a57-2e2e6818c8dc.html&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;secure upload portal&lt;/a&gt;. Files uploaded to this portal will only be visible to MongoDB employees investigating this issue and are routinely deleted after some time.&lt;/p&gt;

&lt;p&gt;Thank you,&lt;br/&gt;
Thomas&lt;/p&gt;</comment>
                            <comment id="1202576" author="thomas.schubert" created="Mon, 14 Mar 2016 16:46:00 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=airs0urce&quot; class=&quot;user-hover&quot; rel=&quot;airs0urce&quot;&gt;airs0urce&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;Thank you for opening this ticket. To get a better idea of what is going on here, please answer the following questions:&lt;/p&gt;

&lt;ol&gt;
	&lt;li&gt;How did you remove the documents in the &lt;tt&gt;swipes&lt;/tt&gt; collection?&lt;/li&gt;
	&lt;li&gt;Were there long running operations on the &lt;tt&gt;swipes&lt;/tt&gt; collection when the documents were removed? eg. background index build?&lt;/li&gt;
	&lt;li&gt;Were there any unclean shutdowns or other errors logged by the server around this time?&lt;/li&gt;
	&lt;li&gt;Have you manipulated (copied or moved) the underling database files?&lt;/li&gt;
	&lt;li&gt;If this node is part of a replica set, are other members affected?&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Kind regards,&lt;br/&gt;
Thomas&lt;/p&gt;</comment>
                            <comment id="1202568" author="airs0urce" created="Mon, 14 Mar 2016 16:41:59 +0000"  >&lt;p&gt;I don&apos;t remove that collection from remote server for about next 15 hours. So if you need any additional information - I&apos;m ready to help.&lt;br/&gt;
You can write me in Telegram or Skype, my username: airs0urce.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="226468">SERVER-20063</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="272280">SERVER-23123</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="113367" name="test.bson" size="709" author="airs0urce" created="Mon, 14 Mar 2016 15:51:06 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>12.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 14 Mar 2016 16:46:00 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        4 years, 30 weeks, 1 day 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>airs0urce</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            4 years, 30 weeks, 1 day ago
                        </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>airs0urce</customfieldvalue>
            <customfieldvalue>kelsey.schubert@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrkdof:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10750" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Steps To Reproduce</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>&lt;p&gt;Get dump of &quot;swipes&quot; collection from attached test.bson&lt;br/&gt;
Run mongorestore --collection swipes --db databasename /Users/airs0urce/Desktop/test.bson &lt;/p&gt;</customfieldvalue>

                        </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>
                                    <customfieldvalue><![CDATA[kelsey.schubert@mongodb.com]]></customfieldvalue>
    

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hsbytr:</customfieldvalue>

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