-
Notifications
You must be signed in to change notification settings - Fork 34
DOCSP-41971: Bulk write #130
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
Merged
norareidy
merged 6 commits into
mongodb:php-standardization
from
norareidy:DOCSP-41971-bulk
Sep 17, 2024
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2f05bac
DOCSP-41971: Bulk write
norareidy d0a12bd
edits
norareidy 24681d6
Merge remote-tracking branch 'upstream/php-standardization' into DOCS…
norareidy f793c80
JS feedback
norareidy 996e74b
api links
norareidy a328109
Merge remote-tracking branch 'upstream/php-standardization' into DOCS…
norareidy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
require 'vendor/autoload.php'; | ||
|
||
$uri = getenv('MONGODB_URI') ?: throw new RuntimeException('Set the MONGODB_URI variable to your Atlas URI that connects to the sample dataset'); | ||
$client = new MongoDB\Client($uri); | ||
|
||
// start-db-coll | ||
$collection = $client->sample_restaurants->restaurants; | ||
// end-db-coll | ||
|
||
// start-run-bulk | ||
$result = $collection->bulkWrite( | ||
[ | ||
[ | ||
'insertOne' => [ | ||
['name' => 'Mongo\'s Deli'], | ||
['cuisine' => 'Sandwiches'], | ||
['borough' => 'Manhattan'], | ||
['restaurant_id' => '1234'], | ||
], | ||
], | ||
[ | ||
'updateOne' => [ | ||
['name' => 'Mongo\'s Deli'], | ||
['$set' => ['cuisine' => 'Sandwiches and Salads']], | ||
], | ||
], | ||
[ | ||
'deleteMany' => [ | ||
['borough' => 'Manhattan'], | ||
], | ||
], | ||
] | ||
); | ||
// end-run-bulk | ||
|
||
// start-bulk-options | ||
$result = $collection->bulkWrite( | ||
[ | ||
[ | ||
'insertOne' => [ | ||
['name' => 'Mongo\'s Pizza'], | ||
['cuisine' => 'Italian'], | ||
['borough' => 'Queens'], | ||
['restaurant_id' => '5678'], | ||
], | ||
], | ||
[ | ||
'deleteOne' => [ | ||
['restaurant_id' => '5678'], | ||
], | ||
], | ||
], | ||
['ordered' => false] | ||
); | ||
// end-bulk-options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.. _php-codecs: | ||
|
||
====== | ||
Codecs | ||
====== | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ Write Data to MongoDB | |
:titlesonly: | ||
:maxdepth: 1 | ||
|
||
/write/insert | ||
/write/update | ||
/write/insert | ||
/write/bulk-write |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,230 @@ | ||
.. _php-bulk-write: | ||
|
||
===================== | ||
Bulk Write Operations | ||
===================== | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol | ||
|
||
.. facet:: | ||
:name: genre | ||
:values: reference | ||
|
||
.. meta:: | ||
:keywords: insert, update, replace, code example | ||
|
||
Overview | ||
-------- | ||
|
||
In this guide, you can learn how to perform multiple write operations | ||
in a single database call by using **bulk write operations**. | ||
|
||
Consider a scenario in which you want to insert a document into a collection, | ||
update multiple other documents, then delete a document. If you use | ||
individual methods, each operation requires its own database call. Instead, | ||
you can use a bulk operation to reduce the number of calls to the database. | ||
|
||
Sample Data | ||
~~~~~~~~~~~ | ||
|
||
The examples in this guide use the ``restaurants`` collection in the ``sample_restaurants`` | ||
database from the :atlas:`Atlas sample datasets </sample-data>`. To access this collection | ||
from your PHP application, instantiate a ``MongoDB\Client`` that connects to an Atlas cluster | ||
and assign the following value to your ``$collection`` variable: | ||
|
||
.. literalinclude:: /includes/write/bulk-write.php | ||
:language: php | ||
:dedent: | ||
:start-after: start-db-coll | ||
:end-before: end-db-coll | ||
|
||
To learn how to create a free MongoDB Atlas cluster and load the sample datasets, see the | ||
:atlas:`Get Started with Atlas </getting-started>` guide. | ||
|
||
.. _php-bulk-operations: | ||
|
||
Bulk Operations | ||
--------------- | ||
|
||
To run a bulk write operation, pass an array of write operations to the | ||
``MongoDB\Collection::bulkWrite()`` method. Use the following syntax to | ||
specify the write operations: | ||
|
||
.. code-block:: php | ||
|
||
[ | ||
[ 'deleteMany' => [ $filter ] ], | ||
[ 'deleteOne' => [ $filter ] ], | ||
[ 'insertOne' => [ $document ] ], | ||
[ 'replaceOne' => [ $filter, $replacement, $options ] ], | ||
[ 'updateMany' => [ $filter, $update, $options ] ], | ||
[ 'updateOne' => [ $filter, $update, $options ] ], | ||
] | ||
|
||
.. tip:: | ||
|
||
For more information about delete, insert, replace, and update | ||
operations, see the :ref:`Write operation guides <php-write>`. | ||
|
||
When you call the ``bulkWrite()`` method, the library automatically runs the | ||
write operations in the order they're specified in the array. To learn how to | ||
instruct ``bulkWrite()`` to run the write operations in an arbitrary order, | ||
see the :ref:`php-bulk-modify` section. | ||
|
||
Example | ||
~~~~~~~ | ||
|
||
This example runs the following write operations on the ``restaurants`` | ||
collection: | ||
|
||
- **Insert operation** to insert a document in which the ``name`` value is | ||
``'Mongo's Deli'`` | ||
|
||
- **Update operation** to update the ``cuisine`` field of a document in | ||
which the ``name`` value is ``'Mongo's Deli'`` | ||
|
||
- **Delete operation** to delete all documents in which the ``borough`` value | ||
is ``'Manhattan'`` | ||
|
||
.. literalinclude:: /includes/write/bulk-write.php | ||
:start-after: start-run-bulk | ||
:end-before: end-run-bulk | ||
:language: php | ||
:dedent: | ||
|
||
.. _php-bulk-modify: | ||
|
||
Modify Bulk Write Behavior | ||
-------------------------- | ||
|
||
You can modify the behavior of the ``MongoDB\Collection::bulkWrite()`` method by | ||
passing an array that specifies option values as a parameter. The following table | ||
describes the options you can set in the array: | ||
|
||
.. list-table:: | ||
:widths: 30 70 | ||
:header-rows: 1 | ||
|
||
* - Option | ||
- Description | ||
|
||
* - ``bypassDocumentValidation`` | ||
- | Specifies whether the operation bypasses document validation. This lets you | ||
modify documents that don't meet the schema validation requirements, if any | ||
exist. For more information about schema validation, see :manual:`Schema | ||
Validation </core/schema-validation/#schema-validation>` in the {+mdb-server+} | ||
manual. | ||
| Defaults to ``false``. | ||
|
||
* - ``codec`` | ||
- | Sets the codec to use for encoding or decoding documents. Bulk writes | ||
use the codec for ``insertOne()`` and ``replaceOne()`` operations. | ||
For more information, see the :ref:`php-codecs` guide. | ||
|
||
* - ``writeConcern`` | ||
- | Sets the write concern for the operation. | ||
For more information, see :manual:`Write Concern </reference/write-concern/>` | ||
in the {+mdb-server+} manual. | ||
|
||
* - ``let`` | ||
- | Specifies a document with a list of values to improve operation readability. | ||
Values must be constant or closed expressions that don't reference document | ||
fields. For more information, see the :manual:`let statement | ||
</reference/command/update/#std-label-update-let-syntax>` in the | ||
{+mdb-server+} manual. | ||
|
||
* - ``ordered`` | ||
- | If set to ``true``: when a single write fails, the operation stops without | ||
performing the remaining writes and throws an exception. | ||
| If set to ``false``: when a single write fails, the operation continues to | ||
attempt the remaining write operations, if any, then throws an exception. | ||
| Defaults to ``true``. | ||
|
||
* - ``comment`` | ||
- | Attaches a comment to the operation. For more information, see the :manual:`insert command | ||
fields </reference/command/insert/#command-fields>` guide in the | ||
{+mdb-server+} manual. | ||
|
||
* - ``session`` | ||
- | Specifies the client session to associate with the operation. | ||
|
||
The following example calls the ``bulkWrite()`` method to perform an | ||
insert and delete operation and sets the ``ordered`` option to | ||
``false``: | ||
|
||
.. literalinclude:: /includes/write/bulk-write.php | ||
:start-after: start-bulk-options | ||
:end-before: end-bulk-options | ||
:language: php | ||
:dedent: | ||
|
||
If the library runs the insert operation first, one document is deleted. | ||
If it runs the delete operation first, no documents are deleted. | ||
|
||
.. note:: | ||
|
||
Unordered bulk operations do not guarantee order of execution. The order can | ||
differ from the way you list them to optimize the runtime. | ||
|
||
.. _php-bulk-return-value: | ||
|
||
Return Value | ||
------------ | ||
|
||
The ``MongoDB\Collection::bulkWrite()`` method returns a ``MongoDB\BulkWriteResult`` | ||
object. This class contains the following member functions: | ||
|
||
.. list-table:: | ||
:widths: 30 70 | ||
:header-rows: 1 | ||
|
||
* - Function | ||
- Description | ||
|
||
* - ``getDeletedCount()`` | ||
- | Returns the number of documents deleted, if any. | ||
|
||
* - ``getInsertedCount()`` | ||
- | Returns the number of documents inserted, if any. | ||
|
||
* - ``getInsertedIds()`` | ||
- | Returns a map of ``_id`` field values for inserted documents, if any. | ||
|
||
* - ``getMatchedCount()`` | ||
- | Returns the number of documents matched during update and replace | ||
operations, if applicable. | ||
|
||
* - ``getModifiedCount()`` | ||
- | Returns the number of documents modified, if any. | ||
|
||
* - ``getUpsertedCount()`` | ||
- | Returns the number of documents upserted, if any. | ||
|
||
* - ``getUpsertedIds()`` | ||
- | Returns a map of ``_id`` field values for upserted documents, if any. | ||
|
||
* - ``isAcknowledged()`` | ||
- | Returns a boolean indicating whether the bulk operation was acknowledged. | ||
|
||
Additional Information | ||
---------------------- | ||
|
||
To learn how to perform individual write operations, see the following guides: | ||
|
||
- :ref:`php-write-insert` | ||
- :ref:`php-write-update` | ||
- :ref:`php-write-delete` | ||
- :ref:`php-write-replace` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
API Documentation | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
To learn more about any of the methods or types discussed in this | ||
guide, see the following API documentation: | ||
|
||
- :phpmethod:`MongoDB\Collection::bulkWrite()` | ||
- :phpclass:`MongoDB\BulkWriteResult` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.