Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 26 additions & 5 deletions src/Database/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

use Exception;
use Utopia\Database\Exception as DatabaseException;
use Utopia\Database\Exception\Authorization as AuthorizationException;
use Utopia\Database\Exception\Conflict as ConflictException;
use Utopia\Database\Exception\Duplicate as DuplicateException;
use Utopia\Database\Exception\Limit as LimitException;
use Utopia\Database\Exception\Relationship as RelationshipException;
use Utopia\Database\Exception\Restricted as RestrictedException;
use Utopia\Database\Exception\Timeout as TimeoutException;
use Utopia\Database\Exception\Transaction as TransactionException;

Expand Down Expand Up @@ -371,7 +376,10 @@ public function inTransaction(): bool
*/
public function withTransaction(callable $callback): mixed
{
for ($attempts = 0; $attempts < 3; $attempts++) {
$sleep = 100_000; // 100 milliseconds
$retries = 2;

for ($attempts = 0; $attempts <= $retries; $attempts++) {
try {
$this->startTransaction();
$result = $callback();
Expand All @@ -380,18 +388,31 @@ public function withTransaction(callable $callback): mixed
} catch (\Throwable $action) {
try {
$this->rollbackTransaction();

if (
$action instanceof DuplicateException ||
$action instanceof RestrictedException ||
$action instanceof AuthorizationException ||
$action instanceof RelationshipException ||
$action instanceof ConflictException ||
$action instanceof LimitException
) {
$this->inTransaction = 0;
throw $action;
}

} catch (\Throwable $rollback) {
if ($attempts < 2) {
\usleep(5000); // 5ms
if ($attempts < $retries) {
\usleep($sleep * ($attempts + 1));
continue;
}

$this->inTransaction = 0;
throw $rollback;
}

if ($attempts < 2) {
\usleep(5000); // 5ms
if ($attempts < $retries) {
\usleep($sleep * ($attempts + 1));
continue;
}

Expand Down
22 changes: 8 additions & 14 deletions src/Database/Adapter/SQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,18 @@ public function startTransaction(): bool
$this->getPDO()->prepare('ROLLBACK')->execute();
}

$result = $this->getPDO()->beginTransaction();
$this->getPDO()->beginTransaction();

} else {
$result = $this->getPDO()->exec('SAVEPOINT transaction' . $this->inTransaction);
$this->getPDO()->exec('SAVEPOINT transaction' . $this->inTransaction);
}
} catch (PDOException $e) {
throw new TransactionException('Failed to start transaction: ' . $e->getMessage(), $e->getCode(), $e);
}

if (!$result) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rely on Exceptions

throw new TransactionException('Failed to start transaction');
}

$this->inTransaction++;
return $result;

return true;
}

/**
Expand Down Expand Up @@ -101,21 +99,17 @@ public function rollbackTransaction(): bool

try {
if ($this->inTransaction > 1) {
$result = $this->getPDO()->exec('ROLLBACK TO transaction' . ($this->inTransaction - 1));
$this->getPDO()->exec('ROLLBACK TO transaction' . ($this->inTransaction - 1));
$this->inTransaction--;
} else {
$result = $this->getPDO()->rollBack();
$this->getPDO()->rollBack();
$this->inTransaction = 0;
}
} catch (PDOException $e) {
throw new DatabaseException('Failed to rollback transaction: ' . $e->getMessage(), $e->getCode(), $e);
}

if (!$result) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rely on Exceptions

throw new TransactionException('Failed to rollback transaction');
}

return $result;
return true;
}

/**
Expand Down