Blocking MongoDB issue delays release of the open-release/juniper.master branch

This evening (on the old continent), we had a meeting with @nedbat and @sambapete to discuss the creation of the “open-release/juniper.master” branch. There has been a lot of testing from the community in the past couple weeks, all blocking issues have been resolved, and we were confident that we would be able to create this branch today.

This branch is a requirement, but it’s not the actual release of Juniper. Technically, Juniper is only released when the “open-release/juniper.1” branch is created. However, the juniper.1 branch is expected to follow up very quickly after the creation of the juniper.master branch.

Unfortunately, we could not create the juniper.master branch because we discovered an important issue in the current Juniper release candidate (RC2). The deployment playbooks run RC2 with an outdated version of MongoDB: they install MongoDB v3.2.16 instead of v3.6.17. This is a serious issue for a couple reasons:

  1. MongoDB v3.2 has reached its end-of-life in September 2018 and no longer receives security fixes (https://www.mongodb.com/support-policy).
  2. The upgrade from 3.2 and 3.6 is non-trivial and we cannot ask users to upgrade between the moment we release juniper.master and juniper.1.
  3. edX.org already runs v3.6, so Juniper would become outdated on the day it was released if it came with v3.2.

Thus, we decided to postpone the release of the juniper.master branch by at least a week. This is a 4-day weekend in the US, so there won’t be much time to get a PR reviewed to upgrade the deployment playbooks. A juniper.rc3 branch will be created, and we hope that many users will have the opportunity to test this third and (hopefully) final release candidate.

It remains an open question why the MongoDB upgrade (or lack thereof) went unnoticed by almost everyone in the community. I expect that the post-mortem investigation of this issue will give us great insights about the way we can improve the release process. In the meantime, thank you all for your hard work!

5 Likes

Hi @regis,

I know we actually installed this all the time using mongo 3.6, so all our tests actually happend in that version. I’ll ping someone from our team to please comment here.

Interesting. I also did my testing with Mongodb 3.6, but we realized during Friday’s meeting that:

  1. the juniper release notes did not include any mention of the mongodb upgrade.
  2. the ansible playbooks were installing mongodb 3.2.

Thus we assumed that most people had tested Juniper.rc2 with v3.2. It will be interesting to find out how we came to the conclusion that we had to run 3.6, despite the lack of information in the release notes, and what changes you made to the playbooks to make sure you were running 3.6.

2 Likes

@regis In OpenCraft deployments we’ve been using Mongo 3.6 for quite a while now (on Ironwood).

This is the PR that introduced the MongoDB 3.6 support:

And it can be cleanly backported to Ironwood.

Also, there’s a discussion about the Mongo upgrade from a while back here: How do openedx operators upgrade Mongo? Do you use the upgrade playbooks in configuration?

Btw, Mongo 3.2 is still supported by the newer pymongo version. :slight_smile:

1 Like

I agree with releasing Juniper on Mongo 3.6. However, we still need to document how operators can do the upgrade. Or, at the very least, give a 3.2 deprecation warning in the release notes and point to some existing upgrade documentation.

Absolutely. I asked about this a while ago, but didn’t get an answer: How do openedx operators upgrade Mongo? Do you use the upgrade playbooks in configuration? - #7 by regis

cc @jdmulloy: with Juniper around the corner, do you think you could give us instructions for the v3.2 → v3.6 upgrade?

@regis https://docs.mongodb.com provides details about how to do this upgrade, and they recommend doing it in two stages (3.2 → 3.4 → 3.6). OpenCraft did an internal investigation into this process, which is tailored to our clustered setup used by the Ocim hosted service, but it goes through the steps we’ll be taking for our upgrade, as well as the authentication mechanism (SCRAM) update.

Ocim Mongo upgrade: 3.2 to 3.4, 3.6

1 Like