Class: Mongo::BulkWrite
- Inherits:
-
Object
- Object
- Mongo::BulkWrite
- Extended by:
- Forwardable
- Includes:
- Retryable
- Defined in:
- lib/mongo/bulk_write.rb,
lib/mongo/bulk_write/result.rb,
lib/mongo/bulk_write/combineable.rb,
lib/mongo/bulk_write/validatable.rb,
lib/mongo/bulk_write/transformable.rb,
lib/mongo/bulk_write/result_combiner.rb,
lib/mongo/bulk_write/ordered_combiner.rb,
lib/mongo/bulk_write/unordered_combiner.rb
Defined Under Namespace
Modules: Combineable, Transformable, Validatable Classes: OrderedCombiner, Result, ResultCombiner, UnorderedCombiner
Instance Attribute Summary collapse
-
#collection ⇒ Mongo::Collection
readonly
Collection The collection.
-
#options ⇒ Hash, BSON::Document
readonly
Options The options.
-
#requests ⇒ Array<Hash, BSON::Document>
readonly
Requests The requests.
Instance Method Summary collapse
-
#execute ⇒ Mongo::BulkWrite::Result
Execute the bulk write operation.
-
#initialize(collection, requests, options = {}) ⇒ BulkWrite
constructor
private
Create the new bulk write operation.
-
#ordered? ⇒ true, false
private
Is the bulk write ordered?.
-
#write_concern ⇒ WriteConcern
private
Get the write concern for the bulk write.
Methods included from Retryable
#read_with_one_retry, #read_with_retry, #write_with_retry
Constructor Details
#initialize(collection, requests, options = {}) ⇒ BulkWrite
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Create the new bulk write operation.
98 99 100 101 102 |
# File 'lib/mongo/bulk_write.rb', line 98 def initialize(collection, requests, = {}) @collection = collection @requests = requests @options = || {} end |
Instance Attribute Details
#collection ⇒ Mongo::Collection (readonly)
Returns collection The collection.
29 30 31 |
# File 'lib/mongo/bulk_write.rb', line 29 def collection @collection end |
#options ⇒ Hash, BSON::Document (readonly)
Returns options The options.
35 36 37 |
# File 'lib/mongo/bulk_write.rb', line 35 def @options end |
#requests ⇒ Array<Hash, BSON::Document> (readonly)
Returns requests The requests.
32 33 34 |
# File 'lib/mongo/bulk_write.rb', line 32 def requests @requests end |
Instance Method Details
#execute ⇒ Mongo::BulkWrite::Result
Execute the bulk write operation.
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/mongo/bulk_write.rb', line 53 def execute operation_id = Monitoring.next_operation_id result_combiner = ResultCombiner.new write_with_retry do operations = op_combiner.combine server = next_primary raise Error::UnsupportedCollation.new if op_combiner.has_collation && !server.features.collation_enabled? operations.each do |operation| execute_operation( operation.keys.first, operation.values.first, server, operation_id, result_combiner ) end end result_combiner.result end |
#ordered? ⇒ true, false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Is the bulk write ordered?
114 115 116 |
# File 'lib/mongo/bulk_write.rb', line 114 def ordered? @ordered ||= .fetch(:ordered, true) end |
#write_concern ⇒ WriteConcern
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Get the write concern for the bulk write.
128 129 130 131 |
# File 'lib/mongo/bulk_write.rb', line 128 def write_concern @write_concern ||= [:write_concern] ? WriteConcern.get([:write_concern]) : collection.write_concern end |