-
Notifications
You must be signed in to change notification settings - Fork 22
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
Issue 309 - Adding transaction isolation and default to read committed #311
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,8 @@ default database connection configuration. | |
| :------------------- | :------ | :------------------------------------------------------------------------------------ | | ||
| MYSQL_ROOT_PASSWORD | | The database root user password. Defaults to `DB_ROOT_PASSWORD` | | ||
| MYSQL_ROOT_USER | | The database root user (used to create the site database). Defaults to `DB_ROOT_USER` | | ||
| MYSQL_MAX_ALLOWED_PACKET | 16777216 | Max packet length to send to or receive from the server, [documentation](https://mariadb.com/docs/server/ref/mdb/system-variables/max_allowed_packet/) | | ||
| MYSQL_MAX_ALLOWED_PACKET | 16777216 | Max packet length to send to or receive from the server, [documentation](https://mariadb.com/docs/server/ref/mdb/system-variables/max_allowed_packet/) | ||
| TRANSACTION_ISOLATION | READ-COMMITTED | The isolation level for transactions. | ||
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. Same prefix note as above, and please link to the documentation. https://mariadb.com/docs/server/ref/mdb/system-variables/transaction_isolation/ |
||
|
||
## Logs | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
[mysqld] | ||
# skip-networking | ||
max_allowed_packet ={{ getenv "MYSQL_MAX_ALLOWED_PACKET" }} | ||
transaction-isolation ={{ getenv "TRANSACTION_ISOLATION" }} | ||
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. Same prefix note as above. |
||
# Galera-related settings | ||
[galera] | ||
# Mandatory settings | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please prefix
TRANSACTION_ISOLATION
withMYSQL
to be consistent with the environmental naming conventions across the repository.So
MYSQL_TRANSACTION_ISOLATION
.