diff options
author | Simon L <szaimen@e.mail.de> | 2023-05-16 11:53:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 11:53:30 +0200 |
commit | 2bd08c8198599a8999bb57d9aafc91b32d48e0f6 (patch) | |
tree | 2aeb0e73a49d3c1ace427ef83f6a4f627cd5fc28 /lib | |
parent | 48521d67e1a8e0166c67e44a69dfb0c434c69005 (diff) | |
parent | 050c6d53b38d6737a49c13d4e6a20a6062160503 (diff) | |
download | nextcloud-server-2bd08c8198599a8999bb57d9aafc91b32d48e0f6.tar.gz nextcloud-server-2bd08c8198599a8999bb57d9aafc91b32d48e0f6.zip |
Merge pull request #38030 from nextcloud/enh/retry-transaction
Wrapper method to easily retry deadlock exceptions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/AppFramework/Db/TTransactional.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Db/TTransactional.php b/lib/public/AppFramework/Db/TTransactional.php index 1e02a129e69..56daef1d62a 100644 --- a/lib/public/AppFramework/Db/TTransactional.php +++ b/lib/public/AppFramework/Db/TTransactional.php @@ -25,9 +25,11 @@ declare(strict_types=1); namespace OCP\AppFramework\Db; +use OC\DB\Exceptions\DbalException; use OCP\DB\Exception; use OCP\IDBConnection; use Throwable; +use function OCP\Log\logger; /** * Helper trait for transactional operations @@ -66,4 +68,39 @@ trait TTransactional { throw $e; } } + + /** + * Wrapper around atomic() to retry after a retryable exception occurred + * + * Certain transactions might need to be retried. This is especially useful + * in highly concurrent requests where a deadlocks is thrown by the database + * without waiting for the lock to be freed (e.g. due to MySQL/MariaDB deadlock + * detection) + * + * @template T + * @param callable $fn + * @psalm-param callable():T $fn + * @param IDBConnection $db + * @param int $maxRetries + * + * @return mixed the result of the passed callable + * @psalm-return T + * + * @throws Exception for possible errors of commit or rollback or the custom operations within the closure + * @throws Throwable any other error caused by the closure + * + * @since 27.0.0 + */ + protected function atomicRetry(callable $fn, IDBConnection $db, int $maxRetries = 3): mixed { + for ($i = 0; $i < $maxRetries; $i++) { + try { + return $this->atomic($fn, $db); + } catch (DbalException $e) { + if (!$e->isRetryable() || $i === ($maxRetries - 1)) { + throw $e; + } + logger('core')->warning('Retrying operation after retryable exception.', [ 'exception' => $e ]); + } + } + } } |