Skip to content

Commit fcb3ec4

Browse files
authored
Merge pull request #13449 from nextcloud/fix/admin_manual--release_notes--upgrade-31--db
fix(admin_manual/release_notes): correct ROW FORMAT migration in 31
2 parents 67ef7cd + 7d0d074 commit fcb3ec4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

admin_manual/release_notes/upgrade_to_31.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ Database configuration
1414
Other row formats than ``DYNAMIC`` for MySQL and MariaDB databases will `issue a warning since Nextcloud 24 <https://github.com/nextcloud/server/issues/34497>`_,
1515
as they often cause performance issues.
1616
With Nextcloud 31 a `more prominent new setup warning <https://github.com/nextcloud/server/pull/48547>`_ for this was added.
17-
To resolve the warning, in most cases running ``occ db:convert-mysql-charset`` will resolve the issue.
18-
If some tables are not covered by the ``occ`` command, issuing the proper ``ALTER TABLE`` DDL commands to change the row format during a maintenance window is needed.
17+
18+
The row format can be changed via ``ALTER TABLE`` DDL commands during a maintenance window.
19+
Changing the row format from ``COMPRESSED`` to ``DYNAMIC`` requires about 2x the disk space and may take a long time depending on the size of the database.
20+
See the `MySQL documentation <https://dev.mysql.com/doc/refman/en/innodb-row-format.html>`_ for more information.
1921
If you're not sure how to do this, you can `find some tips and tricks from the community <https://help.nextcloud.com/t/upgrade-to-nextcloud-hub-10-31-0-0-incorrect-row-format-found-in-your-database/218366/>`_.
2022

2123
PHP configuration

0 commit comments

Comments
 (0)