Bulk Insertions
Import
Note: Imports do not trigger callbacks automatically. See Running Callbacks.
Each model has an .import method that will save an array of models in one bulk insert statement.
models = [
Model.new(id: 1, name: "Fred", age: 14),
Model.new(id: 2, name: "Joe", age: 25),
Model.new(id: 3, name: "John", age: 30),
]
Model.import(models)update_on_duplicate
The import method has an optional update_on_duplicate + columns params that allows you to specify the columns (as an array of strings) that should be updated if primary constraint is violated.
models = [
Model.new(id: 1, name: "Fred", age: 14),
Model.new(id: 2, name: "Joe", age: 25),
Model.new(id: 3, name: "John", age: 30),
]
Model.import(models)
Model.find!(1).name # => Fred
models = [
Model.new(id: 1, name: "George", age: 14),
]
Model.import(models, update_on_duplicate: true, columns: %w(name))
Model.find!(1).name # => GeorgeNOTE: If using PostgreSQL you must have version 9.5+ to have the on_duplicate_key_update feature.
ignore_on_duplicate
The import method has an optional ignore_on_duplicate param, that takes a boolean, which will skip records if the primary constraint is violated.
batch_size
The import method has an optional batch_size param, that takes an integer. The batch_size determines the number of models to import in each INSERT statement. This defaults to the size of the models array, i.e. only 1 INSERT statement.
Running Callbacks
Since the import method runs on the class level, callbacks are not triggered automatically, they have to be triggered manually. For example, using the Item class with a UUID primary key:
Note: Manually running your callbacks is mainly aimed at bulk imports. Running them before a normal
.save, for example, would run your callbacks twice.
Last updated