<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 05:59:09 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-63971] Change server parameter to default to read-your-writes behavior after 2PC transaction</title>
                <link>https://jira.mongodb.org/browse/SERVER-63971</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&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="1989735">SERVER-63971</key>
            <summary>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="randolph@mongodb.com">Randolph Tan</assignee>
                                    <reporter username="esha.maharishi@mongodb.com">Esha Maharishi</reporter>
                        <labels>
                            <label>sharding-nyc-subteam1</label>
                    </labels>
                <created>Thu, 24 Feb 2022 17:25:22 +0000</created>
                <updated>Sun, 29 Oct 2023 21:42:00 +0000</updated>
                            <resolved>Wed, 1 Jun 2022 15:31:01 +0000</resolved>
                                                    <fixVersion>5.0.10</fixVersion>
                    <fixVersion>6.0.0-rc9</fixVersion>
                    <fixVersion>6.1.0-rc0</fixVersion>
                                                        <votes>0</votes>
                                    <watches>13</watches>
                                                                                                                <comments>
                            <comment id="4591364" author="xgen-internal-githook" created="Thu, 2 Jun 2022 20:39:51 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Randolph Tan&apos;, &apos;email&apos;: &apos;randolph@10gen.com&apos;, &apos;username&apos;: &apos;renctan&apos;}
&lt;p&gt;Message: &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; Make coordinate commit wait for transaction to actually complete by default&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 52defdf7c5793de48a4aea976cc73569e83c2133)&lt;br/&gt;
Branch: v5.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/5ab26e8a21763fc61044633228f9df2ce75de133&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/5ab26e8a21763fc61044633228f9df2ce75de133&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4591338" author="xgen-internal-githook" created="Thu, 2 Jun 2022 20:32:37 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Randolph Tan&apos;, &apos;email&apos;: &apos;randolph@10gen.com&apos;, &apos;username&apos;: &apos;renctan&apos;}
&lt;p&gt;Message: &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; Make coordinate commit wait for transaction to actually complete by default&lt;/p&gt;

&lt;p&gt;(cherry picked from commit 52defdf7c5793de48a4aea976cc73569e83c2133)&lt;br/&gt;
Branch: v6.0&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/cebec3621db74e513d2b50362a98f373d768589d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/cebec3621db74e513d2b50362a98f373d768589d&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4586798" author="xgen-internal-githook" created="Wed, 1 Jun 2022 15:18:21 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Randolph Tan&apos;, &apos;email&apos;: &apos;randolph@10gen.com&apos;, &apos;username&apos;: &apos;renctan&apos;}
&lt;p&gt;Message: &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; Make coordinate commit wait for transaction to actually complete by default&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/52defdf7c5793de48a4aea976cc73569e83c2133&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/52defdf7c5793de48a4aea976cc73569e83c2133&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4404578" author="schwerin" created="Thu, 10 Mar 2022 18:53:59 +0000"  >&lt;p&gt;An alternative to this behavior is that we could change &lt;tt&gt;readConcern: &quot;majority&quot;&lt;/tt&gt; reads to block on prepare conflicts until they resolve, rather than returning the prior value unconditionally. This would improve the read-your-writes behavior after 2PC transactions without forcing all transaction committers to wait. The wait could be transferred to readers and only paid in the event that the read both arrived before the transaction commit fully completed on the shards &lt;em&gt;and&lt;/em&gt; actually encountered the conflict.&lt;/p&gt;</comment>
                            <comment id="4381822" author="garaudy.etienne" created="Mon, 28 Feb 2022 21:05:13 +0000"  >&lt;p&gt;This discovery came from an ongoing customer &lt;a href=&quot;https://support.mongodb.com/case/00818832&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;investigation&lt;/a&gt;&#160;where we couldn&apos;t wrap our minds around why they were not able to read their own writes after committing a transaction. The customer now has correct behavior after this change, but they are not happy with the new performance. We will look into speeding 2PC in general.&#160;&lt;/p&gt;</comment>
                            <comment id="4381696" author="schwerin" created="Mon, 28 Feb 2022 20:39:00 +0000"  >&lt;p&gt;I am curious what impact this change will have on benchmarks. I think it&apos;s true that it&apos;s generally preferable to read your writes on primaries, and it&apos;s a behavior worth preserving. I&apos;m also curious, in practice, how often a user in real networking conditions would fail to read their writes with the &lt;tt&gt;coordinateCommitReturnImmediatelyAfterPersistingDecision:true&lt;/tt&gt;. However, I agree that it will be less surprising in those corner cases to change the default to &lt;tt&gt;coordinateCommitReturnImmediatelyAfterPersistingDecision:false&lt;/tt&gt;. I&apos;m curious if we could utilize synchronized wall clocks in the future to achieve this behavior while still returning earlier to the client. Modern clock synchronization algorithms are quite good.&lt;/p&gt;</comment>
                            <comment id="4377213" author="garaudy.etienne" created="Fri, 25 Feb 2022 16:10:05 +0000"  >&lt;p&gt;We decided to revert this change last week and default it back to false. cc &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=max.hirschhorn&quot; class=&quot;user-hover&quot; rel=&quot;max.hirschhorn&quot;&gt;max.hirschhorn&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4377200" author="ratika.gandhi" created="Fri, 25 Feb 2022 16:07:05 +0000"  >&lt;p&gt;Added it to our product sync cc &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=garaudy.etienne&quot; class=&quot;user-hover&quot; rel=&quot;garaudy.etienne&quot;&gt;garaudy.etienne&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="4376859" author="tess.avitabile" created="Fri, 25 Feb 2022 14:46:01 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=schwerin&quot; class=&quot;user-hover&quot; rel=&quot;schwerin&quot;&gt;schwerin&lt;/a&gt;, I&apos;m curious what your opinion is about this ticket.&lt;/p&gt;</comment>
                            <comment id="4374944" author="esha.maharishi@10gen.com" created="Thu, 24 Feb 2022 17:36:13 +0000"  >&lt;p&gt;If we make this change, we should update tests and passthrough suites that run sharded transactions so that we don&apos;t lose coverage of coordinateCommitReturnImmediatelyAfterPersistingDecision:true.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10420">
                    <name>Backports</name>
                                            <outwardlinks description="backported by">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                                                <inwardlinks description="is depended on by">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10320">
                    <name>Documented</name>
                                                                <inwardlinks description="is documented by">
                                        <issuelink>
            <issuekey id="2059693">DOCS-15386</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10520">
                    <name>Problem/Incident</name>
                                            <outwardlinks description="causes">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="1907012">SERVER-60947</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="2001848">SERVER-64515</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="1986138">SERVER-63815</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="611093">SERVER-37364</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="1292129">SERVER-47130</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <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_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_12450" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Backport Requested</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="23470"><![CDATA[v6.0]]></customfieldvalue>
    <customfieldvalue key="21777"><![CDATA[v5.0]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_13552" key="com.go2group.jira.plugin.crm:crm_generic_field">
                        <customfieldname>Case</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[[5006R00001l8G3hQAE]]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 25 Feb 2022 14:46:01 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        1 year, 35 weeks, 6 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_17050" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Downstream Team Attention</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="16942"><![CDATA[Needed]]></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>luke.bonanomi@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            1 year, 35 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_16465" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Linked BF Score</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>42.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>schwerin@mongodb.com</customfieldvalue>
            <customfieldvalue>esha.maharishi@mongodb.com</customfieldvalue>
            <customfieldvalue>garaudy.etienne@mongodb.com</customfieldvalue>
            <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>randolph@mongodb.com</customfieldvalue>
            <customfieldvalue>ratika.gandhi@mongodb.com</customfieldvalue>
            <customfieldvalue>tess.avitabile@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i0l953:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hr249z:2d</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_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_22250" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Special Downgrade Instructions Required</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="23343"><![CDATA[Not Needed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="5736">Sharding NYC 2022-05-30</customfieldvalue>
    <customfieldvalue id="5737">Sharding NYC 2022-06-13</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10555" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_17051" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Teams Impacted</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="16944"><![CDATA[Docs]]></customfieldvalue>
    <customfieldvalue key="16946"><![CDATA[Triage and Release]]></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>
                                

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

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