<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 08:33:28 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>[GODRIVER-66] Implement unacknowledged writes with async goroutines</title>
                <link>https://jira.mongodb.org/browse/GODRIVER-66</link>
                <project id="14289" key="GODRIVER">Go Driver</project>
                    <description>&lt;p&gt;&lt;b&gt;Updated&lt;/b&gt;:&lt;/p&gt;

&lt;p&gt;In order to emulate legacy opcode latency with unacknowledged writes, the driver needs to process the database reply asynchronously in a goroutine before returning the connection to the pool.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Originally:&lt;/b&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Traditionally, drivers have continued to implement w:0 writes with legacy opcodes to avoid performance regressions.  We could skip doing so (as we&apos;d have no previous performance to regress from) and avoid implementing legacy op codes completely which will be unneeded once OP_MSG supports fire and forget writes in 3.8.&lt;/p&gt;&lt;/blockquote&gt;</description>
                <environment></environment>
        <key id="417215">GODRIVER-66</key>
            <summary>Implement unacknowledged writes with async goroutines</summary>
                <type id="2" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14711&amp;avatarType=issuetype">New Feature</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="sam.rossi@mongodb.com">Samuel Rossi</assignee>
                                    <reporter username="david.golden@mongodb.com">David Golden</reporter>
                        <labels>
                    </labels>
                <created>Wed, 16 Aug 2017 19:12:25 +0000</created>
                <updated>Sat, 28 Oct 2023 11:40:01 +0000</updated>
                            <resolved>Tue, 21 Nov 2017 19:53:37 +0000</resolved>
                                                    <fixVersion>0.0.1</fixVersion>
                                    <component>CRUD</component>
                                        <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="1735143" author="xgen-internal-githook" created="Mon, 27 Nov 2017 17:12:11 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Saghm Rossi&apos;, &apos;username&apos;: &apos;saghm&apos;, &apos;email&apos;: &apos;saghmrossi@gmail.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/GODRIVER-66&quot; title=&quot;Implement unacknowledged writes with async goroutines&quot; class=&quot;issue-link&quot; data-issue-key=&quot;GODRIVER-66&quot;&gt;&lt;del&gt;GODRIVER-66&lt;/del&gt;&lt;/a&gt; Implement unacknowledged writes with async goroutines&lt;br/&gt;
Branch: &lt;a href=&quot;https://jira.mongodb.org/browse/GODRIVER-33&quot; title=&quot;Implement Extended Json Specification&quot; class=&quot;issue-link&quot; data-issue-key=&quot;GODRIVER-33&quot;&gt;&lt;del&gt;GODRIVER-33&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/mongo-go-driver/commit/dc348e2118601a6c24c76cd205c41f79fee05f41&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo-go-driver/commit/dc348e2118601a6c24c76cd205c41f79fee05f41&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1732071" author="xgen-internal-githook" created="Tue, 21 Nov 2017 19:52:52 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;name&apos;: &apos;Saghm Rossi&apos;, &apos;username&apos;: &apos;saghm&apos;, &apos;email&apos;: &apos;saghmrossi@gmail.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/GODRIVER-66&quot; title=&quot;Implement unacknowledged writes with async goroutines&quot; class=&quot;issue-link&quot; data-issue-key=&quot;GODRIVER-66&quot;&gt;&lt;del&gt;GODRIVER-66&lt;/del&gt;&lt;/a&gt; Implement unacknowledged writes with async goroutines&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/10gen/mongo-go-driver/commit/089052fb1706ed6771bd51e409c766b3fb67f3cc&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/10gen/mongo-go-driver/commit/089052fb1706ed6771bd51e409c766b3fb67f3cc&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="1655613" author="craiggwilson" created="Wed, 23 Aug 2017 23:03:11 +0000"  >&lt;p&gt;Unacknowledged writes can be implemented with goroutines very easily. I think you should skip implementing legacy opcodes altogether.&lt;/p&gt;</comment>
                            <comment id="1650137" author="christopher.hendel" created="Thu, 17 Aug 2017 01:15:15 +0000"  >&lt;p&gt;I think we could skip legacy op codes. They are already scheduled for &lt;a href=&quot;https://docs.google.com/document/d/1IwiQ5na4sT3sw3NhI5SvvmsiiDL6ERLuMCQW8HSm7WI/edit#&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;deprecation/removal here.&lt;/a&gt;  &lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>GODRIVER-65</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hr9nin:</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>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            </customfields>
    </item>
</channel>
</rss>