Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor multiple writeConcern helpers into a single `applyWriteConcern' method #1680

Merged
merged 7 commits into from Apr 16, 2018

Conversation

mbroadst
Copy link
Member

We presently have many similar methods laying around the codebase to deal with applying a write concern to some command. This has become a problem during transactions development because we need to make some decisions about whether to apply based on transaction status - and requiring changing this logic in seven locations is error-prone, and outright annoying.

target.retryWrites = true;
}

if (options.w != null || options.j != null || options.fsync != null) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Under this behavior, if the user overrides either w, j, or fsync, we will ignore the entire default write concern.

For example if the collection has a writeConcern with w and j defined, and the user specifies a new value for w, our new writeConcern will only have w, not j.

Is that expected behavior?

Also, should the user be able to specify a new writeConcern value for wtimeout only?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with you, but at the same time this isn't new behavior, rather a merging of existing writeConcern methods. I've created this ticket to track that: https://jira.mongodb.org/browse/NODE-1412

@@ -256,7 +257,8 @@ var UnorderedBulkOperation = function(topology, collection, options) {
: 1000;

// Get the write concern
var writeConcern = common.writeConcern(shallowClone(options), collection, options);
var writeConcern = applyWriteConcern(shallowClone(options), { collection: collection }, options);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will we use a retryWrites value if it is assigned here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's a good point, but at the same time we never did (retryWrites didn't used to be part of the old writeConcern for bulk, it was only in the one in Collection). Truly shows the extent how this fragmentation as hurt us, and also how correct my note is in the function (e.g. setting retryWrites needs to be set in a much better place)

writeConcern has been supported since 2.6, we only need to check
for server support in aggregation's $out in which case support was
deferred to 3.4
@mbroadst mbroadst merged commit 14d7f93 into 3.0.0 Apr 16, 2018
@mbroadst mbroadst deleted the NODE-1411 branch April 16, 2018 22:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants