<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 08:12:45 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-15386] [Server] Change server parameter to default to read-your-writes behavior after 2PC transaction</title>
                <link>https://jira.mongodb.org/browse/DOCS-15386</link>
                <project id="10380" key="DOCS">Documentation</project>
                    <description>&lt;p&gt;From:  Investigate changes in &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-63971&quot; title=&quot;Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-63971&quot;&gt;&lt;del&gt;SERVER-63971&lt;/del&gt;&lt;/a&gt;: &lt;/p&gt;

&lt;p&gt;--------&lt;/p&gt;

    &lt;div class=&quot;panel&quot; style=&quot;background-color: #c2d2c2;border-width: 1px;&quot;&gt;&lt;div class=&quot;panelHeader&quot; style=&quot;border-bottom-width: 1px;background-color: #239eb0;&quot;&gt;&lt;b&gt;Original Downstream Change Summary&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;    coordinateCommitReturnImmediatelyAfterPersistingDecision server parameter now defaults to false. It looks like it is mentioned in the transactions page (&lt;a href=&quot;https://www.mongodb.com/docs/v5.0/core/transactions&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://www.mongodb.com/docs/v5.0/core/transactions&lt;/a&gt;) and server parameters page.&lt;/p&gt;
&lt;h2&gt;&lt;a name=&quot;DescriptionofLinkedTicket&quot;&gt;&lt;/a&gt;Description of Linked Ticket&lt;/h2&gt;
&lt;p&gt;    Currently, the coordinateCommitReturnImmediatelyAfterPersistingDecision server parameter added in&#160;&lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-37364&quot; title=&quot;Coordinator should return the decision to the client as soon as the decision is durable&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-37364&quot;&gt;&lt;del&gt;SERVER-37364&lt;/del&gt;&lt;/a&gt; &lt;a href=&quot;https://github.com/mongodb/mongo/blob/06b94b7eb6d5614a8d58d15656036de9f7c17644/src/mongo/db/s/transaction_coordinator_params.idl#L32-L39&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;defaults to true&lt;/a&gt;, meaning a user may not get read-your-writes behavior even when using readPreference primary in the following cases:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;User does a 2PC transaction (with a write, and within a session)&lt;/li&gt;
	&lt;li&gt;User tries to read the write it just did using a read
	&lt;ul&gt;
		&lt;li&gt;(1) outside a session, or&lt;/li&gt;
		&lt;li&gt;(2) in a different session, or&lt;/li&gt;
		&lt;li&gt;(3) outside a transaction in the same session without causal consistency.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;If (4) the user did the read in a new transaction in the same session (regardless of causal consistency), the read is guaranteed to return the write, because the new transaction would&#160;&lt;a href=&quot;https://github.com/mongodb/mongo/blob/a23d9da0518f79325b7dda04796dba0f856a08cd/src/mongo/db/service_entry_point_common.cpp#L880-L898&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;block&lt;/a&gt; until the earlier transaction had committed on the transaction participant.&lt;/p&gt;

&lt;p&gt;If (5) the user did the read outside a transaction in the same session but &lt;em&gt;with&lt;/em&gt; causal consistency, I&#160;&lt;em&gt;think&lt;/em&gt; the read would return the write, because the read&apos;s afterClusterTime would be &amp;gt;= the operationTime returned for the earlier transaction&apos;s commitTransaction &amp;gt;= the transaction&apos;s commitTimestamp &amp;gt;= the prepareTimestamp on any transaction participant. I think the storage engine would not allow reading a document that&apos;s in prepare at a timestamp &amp;gt;= the document&apos;s prepareTimestamp.&lt;/p&gt;

&lt;p&gt;Since we in general try to preserve read-your-writes behavior when using readPreference primary, we may want to make coordinateCommitReturnImmediatelyAfterPersistingDecision default to false. Preserving read-your-writes is also a sensible default in Serverless.&lt;/p&gt;

&lt;p&gt;If we make this change, we may want to improve documentation for coordinateCommitReturnImmediatelyAfterPersistingDecision for users who want to set it to true.&lt;/p&gt;

&lt;p&gt;CC &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=judah.schvimer&quot; class=&quot;user-hover&quot; rel=&quot;judah.schvimer&quot;&gt;judah.schvimer&lt;/a&gt; , &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=tess.avitabile&quot; class=&quot;user-hover&quot; rel=&quot;tess.avitabile&quot;&gt;tess.avitabile&lt;/a&gt;&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;Acceptance criteria:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://github.com/mongodb/mongo/blob/938bb3e4d5578ba10c46361c9efc8c30c1629b0e/src/mongo/db/s/transaction_coordinator_params.idl#L39&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;Change the server parameter value&lt;/a&gt; to false.&lt;/li&gt;
	&lt;li&gt;Audit what test coverage we have for coordinateCommitReturnImmediatelyAfterPersistingDecision=true to ensure we aren&apos;t losing all of our test coverage for the commitTransaction optimization. We generally aim to test the server&apos;s default behavior but having one concurrency suite running with the commitTransaction optimization on would be worthwhile.&lt;/li&gt;
&lt;/ul&gt;

</description>
                <environment></environment>
        <key id="2059693">DOCS-15386</key>
            <summary>[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction</summary>
                <type id="3" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14718&amp;avatarType=issuetype">Task</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="13201">Fixed</resolution>
                                        <assignee username="dave.cuthbert@mongodb.com">Dave Cuthbert</assignee>
                                    <reporter username="backlog-server-pm">Backlog - Core Eng Program Management Team</reporter>
                        <labels>
                    </labels>
                <created>Wed, 1 Jun 2022 15:31:02 +0000</created>
                <updated>Mon, 13 Nov 2023 17:40:47 +0000</updated>
                            <resolved>Wed, 12 Oct 2022 15:37:36 +0000</resolved>
                                    <version>6.1.0</version>
                                    <fixVersion>6.1.0-rc0</fixVersion>
                    <fixVersion>5.0.10</fixVersion>
                    <fixVersion>6.0.0-rc9</fixVersion>
                    <fixVersion>Server_Docs_20231030</fixVersion>
                    <fixVersion>Server_Docs_20231106</fixVersion>
                    <fixVersion>Server_Docs_20231105</fixVersion>
                    <fixVersion>Server_Docs_20231113</fixVersion>
                                    <component>Server</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="5049517" author="xgen-internal-githook" created="Mon, 12 Dec 2022 23:01:40 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Dave Cuthbert&apos;, &apos;email&apos;: &apos;69165704+davemungo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;davemungo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update (#1987)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;br/&gt;
Branch: indexes-refactor&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/d5074717066a07f5135d9691fed43e9d75b31175&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/d5074717066a07f5135d9691fed43e9d75b31175&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4898263" author="xgen-internal-githook" created="Wed, 12 Oct 2022 15:36:13 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Dave Cuthbert&apos;, &apos;email&apos;: &apos;69165704+davemungo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;davemungo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT (#1997)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update (#1987)&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;br/&gt;
Branch: v5.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/64099ca6ac159d919ec98515f058e7886d687f57&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/64099ca6ac159d919ec98515f058e7886d687f57&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4898262" author="xgen-internal-githook" created="Wed, 12 Oct 2022 15:36:00 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Dave Cuthbert&apos;, &apos;email&apos;: &apos;69165704+davemungo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;davemungo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT (#1996)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update (#1987)&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; BACKPORT&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/c0f4edf137aefb0ed4cc5d87960eebaf6c79d257&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/c0f4edf137aefb0ed4cc5d87960eebaf6c79d257&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4895670" author="xgen-internal-githook" created="Tue, 11 Oct 2022 19:30:20 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Dave Cuthbert&apos;, &apos;email&apos;: &apos;69165704+davemungo@users.noreply.github.com&apos;, &apos;username&apos;: &apos;davemungo&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update (#1987)&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://jira.mongodb.org/browse/DOCS-15386&quot; title=&quot;[Server] Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;DOCS-15386&quot;&gt;&lt;del&gt;DOCS-15386&lt;/del&gt;&lt;/a&gt; server parameter update&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Staging updates&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;/li&gt;
&lt;/ul&gt;


&lt;ul&gt;
	&lt;li&gt;Review feedback&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/docs-mongodb-internal/commit/d5074717066a07f5135d9691fed43e9d75b31175&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/docs-mongodb-internal/commit/d5074717066a07f5135d9691fed43e9d75b31175&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="4592825" author="edu.bot" created="Fri, 3 Jun 2022 13:46:19 +0000"  >&lt;p&gt;&lt;em&gt;Fix Version updated for upstream &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-63971&quot; title=&quot;Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-63971&quot;&gt;&lt;del&gt;SERVER-63971&lt;/del&gt;&lt;/a&gt;:&lt;/em&gt; &lt;br/&gt;
6.1.0-rc0, 5.0.10, 6.0.0-rc9&lt;/p&gt;</comment>
                            <comment id="4592824" author="edu.bot" created="Fri, 3 Jun 2022 13:46:12 +0000"  >&lt;p&gt;&lt;em&gt;Fix Version updated for upstream &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-63971&quot; title=&quot;Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-63971&quot;&gt;&lt;del&gt;SERVER-63971&lt;/del&gt;&lt;/a&gt;:&lt;/em&gt; &lt;br/&gt;
6.1.0-rc0, 5.0.10&lt;/p&gt;</comment>
                            <comment id="4586867" author="edu.bot" created="Wed, 1 Jun 2022 15:31:07 +0000"  >&lt;p&gt;&lt;em&gt;Fix Version updated for upstream &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-63971&quot; title=&quot;Change server parameter to default to read-your-writes behavior after 2PC transaction&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-63971&quot;&gt;&lt;del&gt;SERVER-63971&lt;/del&gt;&lt;/a&gt;:&lt;/em&gt; &lt;br/&gt;
6.1.0-rc0&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10320">
                    <name>Documented</name>
                                            <outwardlinks description="documents">
                                        <issuelink>
            <issuekey id="1989735">SERVER-63971</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>7.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 1 Jun 2022 15:31:07 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        1 year, 8 weeks, 2 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_17052" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Downstream Changes Summary</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>coordinateCommitReturnImmediatelyAfterPersistingDecision server parameter now defaults to false. It looks like it is mentioned in the transactions page (&lt;a href=&quot;https://www.mongodb.com/docs/v5.0/core/transactions&quot;&gt;https://www.mongodb.com/docs/v5.0/core/transactions&lt;/a&gt;) and server parameters page.</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>DOCSP-21764</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_14873" key="com.atlassian.jira.plugin.system.customfieldtypes:multiuserpicker">
                        <customfieldname>External Reviewer</customfieldname>
                        <customfieldvalues>
                                    <customfieldvalue><![CDATA[randolph@mongodb.com]]></customfieldvalue>
    
                        </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>
                            1 year, 8 weeks, 2 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>backlog-server-pm</customfieldvalue>
            <customfieldvalue>dave.cuthbert@mongodb.com</customfieldvalue>
            <customfieldvalue>edu.bot</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i0x2o7:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|i0fyds:</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_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|i0wotj:</customfieldvalue>

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