<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 07:38:18 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>[DOCS-267] Redirect slaveDelay / Delayed Member Page</title>
                <link>https://jira.mongodb.org/browse/DOCS-267</link>
                <project id="10380" key="DOCS">Documentation</project>
                    <description>&lt;p&gt;Old: &lt;a href=&quot;http://www.mongodb.org/display/DOCS/Replica+Sets+slaveDelay&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.mongodb.org/display/DOCS/Replica+Sets+slaveDelay&lt;/a&gt;&lt;br/&gt;
New: &lt;a href=&quot;http://docs.mongodb.org/manual/administration/replica-sets/#delayed&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://docs.mongodb.org/manual/administration/replica-sets/#delayed&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="42701">DOCS-267</key>
            <summary>Redirect slaveDelay / Delayed Member Page</summary>
                <type id="5" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14716&amp;avatarType=issuetype">Sub-task</type>
                            <parent id="42693">DOCS-260</parent>
                                    <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="andrew.leung@10gen.com">Andrew Leung</assignee>
                                    <reporter username="sam.kleinman">Sam Kleinman</reporter>
                        <labels>
                            <label>redirect</label>
                    </labels>
                <created>Thu, 28 Jun 2012 15:41:08 +0000</created>
                <updated>Mon, 13 Nov 2023 18:42:06 +0000</updated>
                            <resolved>Thu, 5 Jul 2012 21:23:01 +0000</resolved>
                                                    <fixVersion>v1.0</fixVersion>
                    <fixVersion>Server_Docs_20231030</fixVersion>
                    <fixVersion>Server_Docs_20231106</fixVersion>
                    <fixVersion>Server_Docs_20231105</fixVersion>
                    <fixVersion>Server_Docs_20231113</fixVersion>
                                    <component>manual</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                                                                <comments>
                            <comment id="141631" author="samk" created="Tue, 10 Jul 2012 22:56:45 +0000"  >&lt;p&gt;These comments showed up here because I flipped the ticket number 276/267. In any case, I&apos;ve updated the value to reflect the bitmask, but I&apos;m leaving the usepowerof2sizes behavior to reflect what Kevin said.&lt;/p&gt;</comment>
                            <comment id="141342" author="matulef" created="Tue, 10 Jul 2012 15:26:12 +0000"  >&lt;p&gt;@Scott I think you&apos;re right about the system/user flags being bitmasks.  It&apos;s confusing to the user, though.  Wouldn&apos;t it make more sense for stats() to display the &lt;b&gt;meaning&lt;/b&gt; of the set flags, rather than just the numeric value of the bitmask?  If so, let&apos;s file a ticket for it. &lt;/p&gt;

&lt;p&gt;As for the second part, I&apos;m not sure your comment makes sense.  Why would it it use the 128 byte bucket rather than 64 (both powers of 2, greater than 48)?  My understanding of this feature is that it only affects the way memory is allocated for new docs. Instead of an n-byte doc being given n*padding_factor bytes, it&apos;s given the nearest power of 2 greater than n. Then all the holes that get created by document deletion are all powers of 2, so easier to reuse. &lt;/p&gt;</comment>
                            <comment id="141157" author="scotthernandez" created="Tue, 10 Jul 2012 03:16:42 +0000"  >&lt;p&gt;This comment if for the last commit.&lt;/p&gt;

&lt;p&gt;The power of 2 docs do not make sense to me at all, nor do the user/systemFlags descriptions. &lt;/p&gt;

&lt;p&gt;It is not the number of flags which are shows in the collections stats for system/userFlags, but the actual flag value, which is bitmask for each possible flag (bit): &lt;a href=&quot;https://github.com/mongodb/mongo/blob/master/src/mongo/db/namespace_details.h#L188&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/blob/master/src/mongo/db/namespace_details.h#L188&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The power of 2 stuff is related to which size hole in the free-list is used to use for the new doc allocation.&lt;/p&gt;

&lt;p&gt;freelist buckets = &lt;span class=&quot;error&quot;&gt;&amp;#91;32, 64, 128, 256 ...&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Normally if you have a document which is 48 bytes then the algorithm will find a hole starting at 64 byte bucket, and move up the list of buckets till it finds a hole to put the doc in. But if the power of 2 is enabled then it will start looking at the 128 byte bucket and move up until it finds something. It should really be called nextPowerOf2Hole or something.&lt;/p&gt;

&lt;p&gt;Do these both make more sense?&lt;/p&gt;</comment>
                            <comment id="140527" author="auto" created="Fri, 6 Jul 2012 22:13:46 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2012-07-06T14:14:42-07:00&apos;, u&apos;email&apos;: u&apos;samk@10gen.com&apos;, u&apos;name&apos;: u&apos;Sam Kleinman&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-267&quot; title=&quot;Redirect slaveDelay / Delayed Member Page&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-267&quot;&gt;&lt;del&gt;DOCS-267&lt;/del&gt;&lt;/a&gt; power of two sizes documentation&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/docs/commit/56524f0cacd1c4a9268e56284c8838d80a1a1c14&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/docs/commit/56524f0cacd1c4a9268e56284c8838d80a1a1c14&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="140150" author="auto" created="Thu, 5 Jul 2012 23:31:51 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2012-07-05T16:01:11-07:00&apos;, u&apos;email&apos;: u&apos;samk@10gen.com&apos;, u&apos;name&apos;: u&apos;Sam Kleinman&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-267&quot; title=&quot;Redirect slaveDelay / Delayed Member Page&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-267&quot;&gt;&lt;del&gt;DOCS-267&lt;/del&gt;&lt;/a&gt; additional changes and examples from the wiki page before redirection&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/docs/commit/e4bf608dd7edcc9c0cf77541fe6f4b694216ef62&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/docs/commit/e4bf608dd7edcc9c0cf77541fe6f4b694216ef62&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="140134" author="auto" created="Thu, 5 Jul 2012 22:49:51 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2012-07-05T15:49:44-07:00&apos;, u&apos;email&apos;: u&apos;samk@10gen.com&apos;, u&apos;name&apos;: u&apos;Sam Kleinman&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-267&quot; title=&quot;Redirect slaveDelay / Delayed Member Page&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-267&quot;&gt;&lt;del&gt;DOCS-267&lt;/del&gt;&lt;/a&gt; delayed replication target modification&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/docs/commit/7beeca10e37b2062a05d3fefa01ce1534eb1c84e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/docs/commit/7beeca10e37b2062a05d3fefa01ce1534eb1c84e&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="140114" author="auto" created="Thu, 5 Jul 2012 22:16:13 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2012-07-05T15:16:07-07:00&apos;, u&apos;email&apos;: u&apos;samk@10gen.com&apos;, u&apos;name&apos;: u&apos;Sam Kleinman&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-267&quot; title=&quot;Redirect slaveDelay / Delayed Member Page&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-267&quot;&gt;&lt;del&gt;DOCS-267&lt;/del&gt;&lt;/a&gt; improvements to the target section to permit redirection&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/docs/commit/13cbe6e8941bc77ab4c5393230a01cd7a7a10c7f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/docs/commit/13cbe6e8941bc77ab4c5393230a01cd7a7a10c7f&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="140104" author="auto" created="Thu, 5 Jul 2012 21:51:30 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2012-07-05T14:45:58-07:00&apos;, u&apos;email&apos;: u&apos;samk@10gen.com&apos;, u&apos;name&apos;: u&apos;Sam Kleinman&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-267&quot; title=&quot;Redirect slaveDelay / Delayed Member Page&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-267&quot;&gt;&lt;del&gt;DOCS-267&lt;/del&gt;&lt;/a&gt; corrections&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/docs/commit/f726edd0a9a2cfa53a2bd364c75f81e5233e07a7&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/docs/commit/f726edd0a9a2cfa53a2bd364c75f81e5233e07a7&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="140103" author="auto" created="Thu, 5 Jul 2012 21:51:29 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;date&apos;: u&apos;2012-07-05T14:19:11-07:00&apos;, u&apos;email&apos;: u&apos;andrew.leung@10gen.com&apos;, u&apos;name&apos;: u&apos;Andrew Leung&apos;}
&lt;p&gt;Message: updated Delayed and member priority entry. &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-267&quot; title=&quot;Redirect slaveDelay / Delayed Member Page&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-267&quot;&gt;&lt;del&gt;DOCS-267&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/docs/commit/02d790edbfe7d5633553d67123631aadffd33fbc&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/docs/commit/02d790edbfe7d5633553d67123631aadffd33fbc&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="140090" author="andrew.leung@10gen.com" created="Thu, 5 Jul 2012 21:23:01 +0000"  >&lt;p&gt;updated command reference. ready for redirect.&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>10.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 5 Jul 2012 21:23:01 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        11 years, 32 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>emet.ozar@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            11 years, 32 weeks, 1 day ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>andrew.leung@10gen.com</customfieldvalue>
            <customfieldvalue>auto</customfieldvalue>
            <customfieldvalue>matulef</customfieldvalue>
            <customfieldvalue>sam.kleinman</customfieldvalue>
            <customfieldvalue>scotthernandez</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrsfrb:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>15734</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_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrylbj:</customfieldvalue>

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