From 03555b566569eed9e47dfdcb3266138f67da8d3d Mon Sep 17 00:00:00 2001 From: Mike Woofter <108414937+mongoKart@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:51:41 -0600 Subject: [PATCH] DOCSP-45883 - Parallelism in transactions (#135) (cherry picked from commit 5ea0b788aae315cee425cce4082258dfe81d35ee) --- source/write/transactions.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/write/transactions.txt b/source/write/transactions.txt index 749542df..229af576 100644 --- a/source/write/transactions.txt +++ b/source/write/transactions.txt @@ -134,7 +134,11 @@ following steps: If you require more control over your transactions, you can use the ``start_transaction()`` method. You can use this method with the ``commit_transaction()`` and ``abort_transaction()`` -methods described in the preceding section to manually manage the transaction lifecycle. +methods described in the preceding section to manually manage the transaction lifecycle. + +.. note:: Parallel Operations Not Supported + + {+driver-short+} does not support running parallel operations within a single transaction. Additional Information ----------------------