From e6f6afded0637f910791dda714270b2766024793 Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Sat, 20 Mar 2004 13:51:43 +0000 Subject: Bug 228423: Document adjustment of MySQL 4GB default table size limit r=kiko, a=justdave --- docs/xml/installation.xml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index 1000ef0cc..b0995ed53 100644 --- a/docs/xml/installation.xml +++ b/docs/xml/installation.xml @@ -1,5 +1,5 @@ - + Installing Bugzilla @@ -608,6 +608,23 @@ # Allow packets up to 1M set-variable = max_allowed_packet=1M + +
+ Permit attachments table to grow beyond 4GB + By default, MySQL will limit the size of a table + to 4GB. This limit is present even if the underlying filesystem + has no such limit or if you are using RAID. To set a higher + limit, follow these instructions. + Run the MySQL command-line client and + enter: + + mysql> ALTER TABLE attachments + AVG_ROW_LENGTH=1000000, MAX_ROWS=20000; + + The above command will change the limit to 20GB. Mysql will have + to make a temporary copy of your entire table to do this. Ideally, + you should do this when your attachments table is still small. +
Add a user to MySQL -- cgit v1.2.3-24-g4f1b