summaryrefslogtreecommitdiff
path: root/doc/update/mysql_to_postgresql.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/update/mysql_to_postgresql.md')
-rw-r--r--doc/update/mysql_to_postgresql.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/update/mysql_to_postgresql.md b/doc/update/mysql_to_postgresql.md
index 44e9f6c5516..f586a3174e8 100644
--- a/doc/update/mysql_to_postgresql.md
+++ b/doc/update/mysql_to_postgresql.md
@@ -83,6 +83,9 @@ Now, you can use pgloader to migrate the data from MySQL to PostgreSQL:
create no indexes, preserve index names, no foreign keys,
data only
+ set net_read_timeout = '120'
+ set net_write_timeout = '240'
+
ALTER SCHEMA 'gitlabhq_production' RENAME TO 'public'
;
@@ -224,7 +227,10 @@ Now, you can use pgloader to migrate the data from MySQL to PostgreSQL:
WITH include no drop, truncate, disable triggers, create no tables,
create no indexes, preserve index names, no foreign keys,
data only
-
+
+ set net_read_timeout = '120'
+ set net_write_timeout = '240'
+
ALTER SCHEMA 'gitlabhq_production' RENAME TO 'public'
;