Advice regarding Database migration

Andrew Nisbet September 21, 2012

I need to migrate our production system from Postgresql to MySQL.

My thought is to:

1. back up the App

2. Spin up a raw copy of Jira backed by MySQL

3. Restore the APP from the XML file

4. Roll over DNS, ETC.

5. bring down old instance

Should be strait forward, but I am a little worried about the back-up XML file not restoring correctly. Does anyone have advice on things I should be careful of?

Thanks

4 answers

1 accepted

0 votes
Answer accepted
Ivan Tse
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 21, 2012

Hey Andrew,

In many cases we actually recommend using the XML restore method. I haven't seen significant issues with it before unless the database created in mysql isn't set to what JIRA expects. From what you described, it sounds more like you're moving servers completely rather than just databases.

If you're going to just move databases, you should be able to just spin JIRA down, reconfigure it to point to the mysql database then restore the backup zip. Your postgres server at this point won't be touched so the data there will stay as is.

Other than that, before doing anything I recommend backuping everything up.

Andrew Nisbet September 25, 2012

Thanks for the replys everyone. Going to give it a go tomorrow.

0 votes
Norman Abramovitz
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 23, 2012
0 votes
Davet September 23, 2012

As Harry says "give it more RAM" or your XML backup will likely fail.

Also you may want to pay some attention to db settings like "CHARACTER SET utf8 COLLATE utf8_bin;" and to your "my.cnf" depending on the size and activity of the db.

Notably

default-storage-engine=INNODB

transaction-isolation=READ-COMMITTED

innodb_log_file_size=default is way too small

slow_query_log=1 (possibly)

0 votes
Harry Chan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 21, 2012

Hi Andrew, this would depend on the size of your instance. XML backups eat ram. If you do have huge instances it'd fail and/or take a very long time.

Suggest an answer

Log in or Sign up to answer