Trouble upgrading PostgreSQL from 9.3 to current

Continuing the discussion from Discourse Docker Image version 1.3.3, released:

So, I have been using postgres 9.3 since the new docker image came out… and just replacing templates/postgres.9.3.template.yml with templates/postgres.template.yml doesn’t work.
Given a current backup, what’s a good way to upgrade the postgres template?

Changing the template should work; it’s how we did all the 9.3->9.5 migrations here at CDCK. Can you expand on “doesn’t work”?

Here’s the output I get when I ./launcher rebuild app after removing .9.3 from my postgres template

https://gist.github.com/YesThatAllen/cc1bdb3bcea3fe6d5abda9db35e5541d

I remember having issues upgrading to the 1.3.3 image, perhaps because I didn’t know to remove .9.3 then?

There were a couple older sites on Digital Ocean that failed to upgrade to Postgres 9.5 and I stuck with the old template for 9.3. As I recall it had to do with default db encodings being incorrect on the older images.

Lately I’ve had a few stalls while using the web-based upgrade on this one discourse of mine. Manual rebuilds ( ./launcher rebuild app ) worked, but that’s downtime I’d rather avoid.

There was mention of postgres in the logs I saw… I’ll save them if they happen again… and I saw that I was still on old postres 9.3

Is that a problem to address?

100 UIP to @codinghorror. From the gist:

encodings for database "postgres" do not match:  old "SQL_ASCII", new "UTF8"

The smoothest option for upgrading is almost certainly going to be just to run a full backup of the existing site, spin up a new site, and restore into it, then switch over. If you’ve got access to someone who is a PostgreSQL ninja, there are ways of doing encoding rebuilds (with DB dumps and some judicious editing), but it’s not for the faint of heart, and I, for one, am not going to load the foot-gun by trying to write a sufficiently detailed howto…

3 Likes

Torching this container and spinning up a new one seems great.

For the docker novice that I am, is there already a how-to for starting the container over on the same host?

Running a second container is straightforward, in general: copy containers/app.yml (or whatever you’ve called it) into, say, containers/app2.yml, edit that new file a bit, and run ./launcher bootstrap app2; ./launcher start app2. The tricky bit is getting HTTP into the new container; if you’re doing the default setup, where the HTTP port is being forwarded directly into the container, you’ll need to use a different port for the new container, and a bit of the ol’ quick-rebuild-shuffle when you go to make the new site live. If you’re using nginx/haproxy/apache to proxy multiple websites, it’s a bit easier, because you can just setup the new site on a new name and add it to the proxy config.

3 Likes

How can I just start over?

I think what I want to do here is this:

1- download my backup
2- remove the current container (yes, our site will be down for a bit)
3- remove any backups so that a new container won’t try to use them
4- start a fresh container in place
5- re-import this backup

  • I don’t know how to do step 2 (remove the container)
  • I don’ t know if step 3 is relevant, or is a part of step 2
  • I guess step 4 is ./launcher bootstrap app

If you’re OK with some downtime, then this should work:

  1. Take and download backup
  2. ./launcher stop app
  3. docker rm app
  4. mv shared/standalone shared/standalone.9.3
  5. Edit containers/app.yml to change the postgres.9.3 to postgres
  6. ./launcher bootstrap app; ./launcher start app
  7. Import the backup

Step 4 is the step that “makes the current container cease to exist” in a meaningful sense. shared/app is where all of the PostgreSQL data, logs, etc live. By renaming it, rather than just deleting it, you’re leaving yourself with a fallback plan if the unexepected happens and everything goes to hell.

3 Likes

Thanks!

I updated everything & got a fresh backup, then started at:

mv shared/app shared/app.9.3`
mv: cannot stat ‘shared/app’: No such file or directory

I knew there was something wrong because it wouldn’t tab complete app

So I looked in shared to see what’s up:

# ls -al shared/
total 12
drwxr-xr-x  3 root root 4096 May 24  2014 .
drwxr-xr-x 11 root root 4096 Aug 22 11:47 ..
-rw-r--r--  1 root root    0 May 24  2014 .gitkeep
drwxr-xr-x 13 root root 4096 Aug 25 11:05 standalone

I assume that standalone was correct some time ago, and I missed a memo about moving that.

Perhaps I need to move standalone to app so that the normal postgres template knows where to look?

No, it doesn’t need to be moved; I had the wrong name in shared. It should be s/app/standalone/ in step 4, and I’ll edit my post to reflect that.

3 Likes

I had to move the ssl certificate components over to the new /var/discourse/shared/standalone, but otherwise this process worked well. :100:

It visually got stuck at

[2016-08-29 00:19:39] Extracting uploads...

but when I opened a new window to log in, the system message of successful restore greeted me nicely.

2 Likes