Repository reorganization and port to gunicorn
This merge request significantly reorganizes the repository and sets it up to work with Gunicorn as a backend webserver behind an Apache reverse proxy. The new organization follows the recommendations from Two Scoops.
A summary of the changes is as follows:
- Created a new
config
directory which containssettings/
, the wsgi script (renamed towsgi.py
fromdjango.wsgi
), and the mainurls.py
. - Renamed the
gracedb
app toevents
- Created a
gracedb
directory for housing all apps, templates, and static content - Created a
core
app for collecting random utilities - Moved both user and admin documentation to a
docs/
directory - Moved the API code to a subfolder of the
events
app - Deleted all fixtures and rewrote unit tests to work without them
- Updated the authentication middleware to use the correct request headers which are used in place of Apache environment variables when Apache is configured as a reverse proxy.
- Deleted the copy of the VOEventLib library which was stored in this repository; now using the system package.
- Added a config script for running Gunicorn. Note that the actual Gunicorn process is started by systemd, which is part of the Puppet configuration update mentioned below.
There is a corresponding update to the Puppet configuration for the server which needs to be applied in concert, as well as one to the gracedb scripts repository.
This update is functional and has passed all server and client unit tests for a new database constructed from migrations. One thing which needs to be done is to define a procedure for implementing it in an already-existing database. The main concern is renaming the gracedb
app to events
. This will require changes to the database tables. This is currently being tested and a full procedure will be posted before.
More details about the move to Gunicorn are on the redmine page.
Merge request reports
Activity
A few other notes:
- A lot of the changes are just files being moved. In most cases, git tracked it fine, but in a few, it thinks a brand new file was created.
- The old
south_migrations
directories are not needed anymore as far as I can tell. But I've kept them around just to be safe. I expect to delete them at a later date.
added 1 commit
- 5ec469d2 - cleaning up commented out lines in permission unit tess
I developed a procedure for implementing this in-place:
- Update scripts repository in
/home/gracedb/bin
. - Switch to the new branch.
- Access the MariaDB command line
- Rename all model tables for the app:
RENAME TABLE gracedb_approval TO events_approval, gracedb_coincinspiralevent TO events_coincinspiralevent, gracedb_embbeventlog TO events_embbeventlog, gracedb_emfootprint TO events_emfootprint, gracedb_emgroup TO events_emgroup, gracedb_emobservation TO events_emobservation, gracedb_event TO events_event, gracedb_eventlog TO events_eventlog, gracedb_grbevent TO events_grbevent, gracedb_group TO events_group, gracedb_label TO events_label, gracedb_labelling TO events_labelling, gracedb_lalinferenceburstevent TO events_lalinferenceburstevent, gracedb_multiburstevent TO events_multiburstevent, gracedb_pipeline TO events_pipeline, gracedb_search TO events_search, gracedb_signoff TO events_signoff, gracedb_siminspiralevent TO events_siminspiralevent, gracedb_singleinspiral TO events_singleinspiral, gracedb_tag TO events_tag, gracedb_tag_eventlogs TO events_tag_eventlogs, gracedb_voevent TO events_voevent;
- Update the
app_label
column in thedjango_content_type
table:UPDATE django_content_type SET app_label='events' WHERE app_label='gracedb';
- Rename migrations:
UPDATE django_migrations SET app='events' WHERE app='gracedb';
This has been tested on gracedb-dev2. Afterwards, the server passed all of the client and server unit tests.
Edited by Tanner Prestegard- Update scripts repository in
added 1 commit
- d7560f8d - fixing issue with SingleInspiral channels being truncated
added 1 commit
- a5436fe4 - updating robot cert for gstlal-spiir and fixing bug in old migrations
A side comment, I especially like the load testing on the redmine page (https://bugs.ligo.org/redmine/issues/6084). Not necessary now, but it would be interesting to derive a performance figure of merit from that (max requests/second? average requests/second?) and incorporate that into testing after server code upgrades, software updates, etc.
mentioned in commit 80b7e021