Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
b7de9de4
Commit
b7de9de4
authored
May 28, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Omnibus instructions for re-adding indexes
parent
260c877c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
6 deletions
+32
-6
doc/update/mysql_to_postgresql.md
doc/update/mysql_to_postgresql.md
+32
-6
No files found.
doc/update/mysql_to_postgresql.md
View file @
b7de9de4
...
@@ -34,21 +34,47 @@ The lanyrd database converter script does not preserve all indexes, so we have
...
@@ -34,21 +34,47 @@ The lanyrd database converter script does not preserve all indexes, so we have
to recreate them ourselves after migrating from MySQL. It is not necessary to
to recreate them ourselves after migrating from MySQL. It is not necessary to
shut down GitLab for this process.
shut down GitLab for this process.
### For source installations
On source installations (distributed using Git) we retrieve the index
declarations from version control using
`git stash`
.
```
```
# Clone the database converter on your Postgres-backed GitLab server
# Clone the database converter on your Postgres-backed GitLab server
cd /tmp
cd /tmp
git clone https://github.com/gitlabhq/mysql-postgresql-converter.git
git clone https://github.com/gitlabhq/mysql-postgresql-converter.git
# Stash changes to db/schema.rb to make sure we can find the right index statements
cd /home/git/gitlab
cd /home/git/gitlab
# Stash changes to db/schema.rb to make sure we can find the right index statements
sudo -u git -H git stash
sudo -u git -H git stash
# Generate the `CREATE INDEX CONCURRENTLY` statements based on schema.rb
# Generate add_index.rb
cd /tmp/mysql-to-postgresql-converter
ruby /tmp/mysql-postgresql-converter/add_index_statements.rb db/schema.rb > /tmp/mysql-postgresql-converter/add_index.rb
ruby index_create_statements.rb /home/git/gitlab/db/schema.rb > index_create_statements.psql
# Create the indexes
sudo -u git -H bundle exec rails runner -e production 'eval $stdin.read' < /tmp/mysql-postgresql-converter/add_index.rb
```
### For omnibus-gitlab installations
On omnibus-gitlab we need to get the index declarations from a file called
`schema.rb.bundled`
. For older versions, we need to download the file.
```
# Clone the database converter on your Postgres-backed GitLab server
cd /tmp
/opt/gitlab/embedded/bin/git clone https://github.com/gitlabhq/mysql-postgresql-converter.git
cd /tmp/mysql-postgresql-converter
# Generate add_index.rb
/opt/gitlab/embedded/bin/ruby add_index_statements.rb /opt/gitlab/embedded/service/gitlab-rails/db/schema.rb.bundled > add_index.rb
# If schema.rb.bundled does not exist, download it as follows, then try generating add_index.rb again
sudo /opt/gitlab/embedded/bin/curl -o /opt/gitlab/embedded/service/gitlab-rails/db/schema.rb.bundled https://gitlab.com/gitlab-org/gitlab-ce/raw/v6.9.1/db/schema.rb
# Execute the SQL statements against the GitLab database
/opt/gitlab/bin/gitlab-rails runner 'eval $stdin.read' < add_index.rb
sudo -u git psql -f index_create_statements.psql -d gitlabhq_production
```
```
## Converting a GitLab backup file from MySQL to Postgres
## Converting a GitLab backup file from MySQL to Postgres
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment