1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
# Copyright (C) 2014-2017 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'mongo/bulk_write/result'
require 'mongo/bulk_write/transformable'
require 'mongo/bulk_write/validatable'
require 'mongo/bulk_write/combineable'
require 'mongo/bulk_write/ordered_combiner'
require 'mongo/bulk_write/unordered_combiner'
require 'mongo/bulk_write/result_combiner'
module Mongo
class BulkWrite
extend Forwardable
include Retryable
# @return [ Mongo::Collection ] collection The collection.
attr_reader :collection
# @return [ Array<Hash, BSON::Document> ] requests The requests.
attr_reader :requests
# @return [ Hash, BSON::Document ] options The options.
attr_reader :options
# Delegate various methods to the collection.
def_delegators :@collection,
:database,
:cluster,
:next_primary
def_delegators :database, :client
# Execute the bulk write operation.
#
# @example Execute the bulk write.
# bulk_write.execute
#
# @return [ Mongo::BulkWrite::Result ] The result.
#
# @since 2.1.0
def execute
operation_id = Monitoring.next_operation_id
result_combiner = ResultCombiner.new
operations = op_combiner.combine
client.send(:with_session, @options) do |session|
operations.each do |operation|
if single_statement?(operation)
write_with_retry(session, write_concern) do |server, txn_num|
execute_operation(
operation.keys.first,
operation.values.first,
server,
operation_id,
result_combiner,
session,
txn_num)
end
else
legacy_write_with_retry do |server|
execute_operation(
operation.keys.first,
operation.values.first,
server,
operation_id,
result_combiner,
session)
end
end
end
end
result_combiner.result
end
# Create the new bulk write operation.
#
# @api private
#
# @example Create an ordered bulk write.
# Mongo::BulkWrite.new(collection, [{ insert_one: { _id: 1 }}])
#
# @example Create an unordered bulk write.
# Mongo::BulkWrite.new(collection, [{ insert_one: { _id: 1 }}], ordered: false)
#
# @example Create an ordered mixed bulk write.
# Mongo::BulkWrite.new(
# collection,
# [
# { insert_one: { _id: 1 }},
# { update_one: { filter: { _id: 0 }, update: { '$set' => { name: 'test' }}}},
# { delete_one: { filter: { _id: 2 }}}
# ]
# )
#
# @param [ Mongo::Collection ] collection The collection.
# @param [ Array<Hash, BSON::Document> ] requests The requests.
# @param [ Hash, BSON::Document ] options The options.
#
# @since 2.1.0
def initialize(collection, requests, options = {})
@collection = collection
@requests = requests
@options = options || {}
end
# Is the bulk write ordered?
#
# @api private
#
# @example Is the bulk write ordered?
# bulk_write.ordered?
#
# @return [ true, false ] If the bulk write is ordered.
#
# @since 2.1.0
def ordered?
@ordered ||= options.fetch(:ordered, true)
end
# Get the write concern for the bulk write.
#
# @api private
#
# @example Get the write concern.
# bulk_write.write_concern
#
# @return [ WriteConcern ] The write concern.
#
# @since 2.1.0
def write_concern
@write_concern ||= options[:write_concern] ?
WriteConcern.get(options[:write_concern]) : collection.write_concern
end
private
SINGLE_STATEMENT_OPS = [ :delete_one,
:update_one,
:insert_one ].freeze
def single_statement?(operation)
SINGLE_STATEMENT_OPS.include?(operation.keys.first)
end
def base_spec(operation_id, session)
{
:db_name => database.name,
:coll_name => collection.name,
:write_concern => write_concern,
:ordered => ordered?,
:operation_id => operation_id,
:bypass_document_validation => !!options[:bypass_document_validation],
:options => options,
:id_generator => client.options[:id_generator],
:session => session
}
end
def execute_operation(name, values, server, operation_id, combiner, session, txn_num = nil)
raise Error::UnsupportedCollation.new if op_combiner.has_collation && !server.features.collation_enabled?
raise Error::UnsupportedArrayFilters.new if op_combiner.has_array_filters && !server.features.array_filters_enabled?
begin
if values.size > server.max_write_batch_size
split_execute(name, values, server, operation_id, combiner, session, txn_num)
else
combiner.combine!(send(name, values, server, operation_id, session, txn_num), values.size)
end
rescue Error::MaxBSONSize, Error::MaxMessageSize => e
raise e if values.size <= 1
split_execute(name, values, server, operation_id, combiner, session, txn_num)
end
end
def op_combiner
@op_combiner ||= ordered? ? OrderedCombiner.new(requests) : UnorderedCombiner.new(requests)
end
def split_execute(name, values, server, operation_id, combiner, session, txn_num)
execute_operation(name, values.shift(values.size / 2), server, operation_id, combiner, session, txn_num)
txn_num = session.next_txn_num if txn_num
execute_operation(name, values, server, operation_id, combiner, session, txn_num)
end
def delete_one(documents, server, operation_id, session, txn_num)
Operation::Write::Bulk::Delete.new(
base_spec(operation_id, session).merge(:deletes => documents, :txn_num => txn_num)
).execute(server)
end
def delete_many(documents, server, operation_id, session, txn_num)
Operation::Write::Bulk::Delete.new(
base_spec(operation_id, session).merge(:deletes => documents)
).execute(server)
end
def insert_one(documents, server, operation_id, session, txn_num)
Operation::Write::Bulk::Insert.new(
base_spec(operation_id, session).merge(:documents => documents, :txn_num => txn_num)
).execute(server)
end
def update_one(documents, server, operation_id, session, txn_num)
Operation::Write::Bulk::Update.new(
base_spec(operation_id, session).merge(:updates => documents, :txn_num => txn_num)
).execute(server)
end
alias :replace_one :update_one
def update_many(documents, server, operation_id, session, txn_num)
Operation::Write::Bulk::Update.new(
base_spec(operation_id, session).merge(:updates => documents)
).execute(server)
end
end
end
|