Hey guys, I wonder if there is a way to run ./launcher rebuild app a bit faster. Right now it takes 6-9 minutes to do the whole stuff and i’d like to skip some stuff that looks a bit useless:
These three commands takes a lot of time (about 20-30-60 sec each)
cd /var/www/discourse && chown -R discourse /var/www/discourse
cd /var/www/discourse && su discourse -c 'bundle install --deployment --verbose --without test --without development'
cd /var/www/discourse && su discourse -c 'bundle exec rake db:migrate'
Compiling assets for each locale is also take about a minute, uglifying js is also takes some time.
Aaaaanyhooow, I was hoping there is a way of semi-rebuilding (?!) the app a bit faster than that. I understand the need of running all of these when you’re installing an update or a new plugin, but sometimes I only need a very quick „restart” for more… special cases:
update of a SSL cert
the other day i tried to make it play nice with other sites (following this article) and i had to rebuild couple of times.
PS: time ./launcher rebuild app --skip-prereqs is giving only negligible improvements:
If rebuild time is a huge concern to you I would strongly recommend running a dedicated data container
That way you can bootstrap while your existing site is up and running, meaning you only deal with a few seconds of outage when upgrading via launcher
Bundle install is usually very fast when we just ship an image, I plan on having more regular updates to help out here
Assets precompile is the slowest part, we are cosidering pre-bundling assets or possibly adding a caching server or even more aggressive image updates, but nothing is a trivially easy solution
Can not be done in a single container setup without major headaches… part of the bootstrap process is spawning the db, you can’t have two instances of a database running at the same time.
How does this work when using a separate data container? Does it run migrations on the data that the old site is still using, potentially breaking the site until the web container is upgraded if the migrations are incompatible?
Yes, but… We are very careful to keep migrations compatible data wise, even have a pretty elaborate scheme that delays dropping columns when we move them to new tables
Should this process have copied my data & configuration over? I ran through the steps but got a clean/“fresh” site, so rolled back to the single-container version.
I did a restore from a backup made just before the process, and it seemed to restore everything. So probably this just needs to be made clear.
Can you say a bit more about how this process works in your mind?
After switching to the multi-container scenario, I just did a ./launcher rebuild web_only but my downtime was the same. Clearly I need more coffee still this morning.
Is there any way to skip the whole uglify and compressing of assets & locales during bootstrap if the assets already exist?
Maybe it would make sense to have a dedicated assets volume and/or a comparison of checksums of input files and output filenames before a recompile is attempted.
Or utilising the cache of a docker image build on bootstrap, which could cache the whole git pull / install process unless git repo changes ( https://stackoverflow.com/a/39278224 )
I must admit this has been a bit of a headache for me as well.
I just went https (smooth process, great) and decided to change the dated “out” email at the same time (basically gmail -> gandi). 4h later and umpteen rebuilds later I’m just reverting to the dated one (at least for today). 10 minutes per rebuild is not fun. Not to mention the time figuring out how to cleanup when I run out of space. I’ll be faster next time .
Do all the settings in app.yml really require a rebuild? One would imagine changing email settings would just change something in one place.