Set transaction isolation level to 'READ COMMITTED' in DDEV config

Created on 7 January 2025, 3 months ago

Problem/Motivation

The default transaction isolation level for MySQL, MariaDB and equivalent databases is "REPEATABLE READ". This setting with Drupal can result in deadlocks on tables, which will result in the site becoming very slow or not responding at all.

The recommended transaction isolation level for Drupal sites is 'READ COMMITTED'. The 'REPEATABLE READ' option is supported but can result in deadlocks, the other 2 options are 'READ UNCOMMITTED' and 'SERIALIZABLE'. They are available but not supported; use them at your own risk.

Drupal will generate a warning on the Status report page (admin/reports/status) when a MySQL, MariaDB or equivalent database is used with the transaction isolation level set to "REPEATABLE READ".

Steps to reproduce

Install Drupal CMS via DDEV and confirm there is a warning.

Proposed resolution

Add this to settings.ddev.php:

$databases['default']['default']['init_commands'] = [
    'isolation_level' => 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
];
πŸ“Œ Task
Status

Active

Component

General

Created by

πŸ‡¦πŸ‡ΊAustralia pameeela

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024