Backend of the Substra platform
You will note substra-backend use a versioned REST API with the header protocol.
Current is 0.0
.
- Clone the repo:
git clone https://github.com/SubstraFoundation/substra-backend
⚠️ Do this step only if your environment development is on linux. On linux systems, all the docker instances create files withroot
permissions. For working correctly in a dev environment, we need the files created by our dockers have the same rights as the one we use to launch our celery tasks. The celery tasks run dockers containers, these containers create files (models), the celery tasks manipulate these files.
For being able to make dockers instance create files with the rights as the current linux user, we need to modify some files as described here: https://www.jujens.eu/posts/en/2017/Jul/02/docker-userns-remap/
/etc/docker/daemon.json
with:
{
"userns-remap": "USER"
}
Replace USER
by your username (echo $USER
). It is the user who will launch the celery tasks.
Then run this command for knowing the docker group:
$> getent group docker
docker:x:999:guillaume
999
in my case.
Now modify the file /etc/subuid
like:
guillaume:1000:1
guillaume:165536:65536
The first line should be added with the 1000
group (here the user is guillaume, replace it by yours).
And the file /etc/subgid
:
guillaume:999:1
guillaume:165536:65536
The first line should be added with the docker group (999 in my case).
Final step is to redownload all the dockers image, go in the hlf-k8s project and rerun the ./bootstrap.sh
script.
Do not forget to build the substra-model image as described in the step 9 of this tutorial.
- Install dependencies (might be useful to create a virtual environment before, eg using virtualenv and virtualenvwrapper):
- For numpy, scipy, and pandas (for Ubuntu & Debian users):
sudo apt-get install python-numpy python-scipy python-pandas
pip install -r requirements.txt
- Setup the database:
- Install PostgreSQL if needed
- Create a database.
- Create a main postgresql use with password:
$> sudo su postgres
$> psql
$ CREATE USER backend WITH PASSWORD 'backend' CREATEDB CREATEROLE SUPERUSER;
- Create two databases for both orgs: owkin and chu-nantes. A shell script is available, do not hesitate to run it. It will drop the databases if they are already created, then create them and grant all privileges to your main user backend. (If this is the first time you create the databases, you will see some warnings which are pointless):
$> ./scripts/recreate_db.sh
- We will populate data:
- With django migrations
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python backend/manage.py migrate --settings=backend.settings.dev
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python backend/manage.py migrate --settings=backend.settings.dev
data in fixtures are relative to the data already set in the ledger if the fixtures container instance succeeded
Two solutions:
- With django migrations + load data
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python backend/manage.py migrate --settings=backend.settings.dev
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python backend/manage.py migrate --settings=backend.settings.dev
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python backend/manage.py loaddata ./fixtures/data_owkin.json --settings=backend.settings.dev
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python backend/manage.py loaddata ./fixtures/data_chu-nantes.json --settings=backend.settings.dev
- From dumps:
$> ./scripts/populate_db.sh
If you don't want to replicate the data in the ledger, simply run the django migrations.
Populate media files
$> ./scripts/load_fixtures.sh
It will clean the medias
folders and create the owkin
and chu-nantes
folders in the medias
folder.
- Optional: Create a superuser in your databases:
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python backend/manage.py createsuperuser --settings=backend.settings.dev
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python backend/manage.py createsuperuser --settings=backend.settings.dev
- Build the substra-model docker image: Clone the following git repo https://github.com/SubstraFoundation/substra-tools and build the docker image
docker build -t substra-model .
sudo apt-get install rabbitmq-server
Execute this command in the backend/backend
folder.
Note the use of the development settings.
DJANGO_SETTINGS_MODULE=backend.settings.dev BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 celery -E -A backend worker -l info -B -n owkin -Q owkin,scheduler,celery --hostname owkin.scheduler
DJANGO_SETTINGS_MODULE=backend.settings.dev BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 celery -E -A backend worker -l info -B -n owkin -Q owkin,owkin.worker,celery --hostname owkin.worker
DJANGO_SETTINGS_MODULE=backend.settings.dev BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 celery -E -A backend worker -l info -B -n chunantes -Q chu-nantes,scheduler,celery --hostname chu-nantes.scheduler
DJANGO_SETTINGS_MODULE=backend.settings.dev BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 celery -E -A backend worker -l info -B -n chunantes -Q chu-nantes,chu-nantes.worker,celery --hostname chu-nantes.worker
DJANGO_SETTINGS_MODULE=backend.settings.common celery -A backend beat -l info
Go in the backend
folder and run the server locally:
Be very careful, --settings is different here, server
is needed.
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python manage.py runserver 8000 --settings=backend.settings.server.dev
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python manage.py runserver 8001 --settings=backend.settings.server.dev
If you want to bypass the basic authentication when you browse the server on localhost:8000 or localhost:8001, you can use the nobasicauth
settings.
Simply replace server.dev
by nobasicauth
, like:
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python manage.py runserver 8000 --settings=backend.settings.server.nobasicauth
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python manage.py runserver 8001 --settings=backend.settings.server.nobasicauth
It allows the substra-frontend project to work correctly too.
For working with node to node authentication, you need load some extra fixtures
BACKEND_ORG=owkin BACKEND_DEFAULT_PORT=8000 python manage.py loaddata nodes-owkin.yaml --settings=backend.settings.server.dev
BACKEND_ORG=chu-nantes BACKEND_DEFAULT_PORT=8001 python manage.py loaddata nodes-chunantes.yaml --settings=backend.settings.server.dev
DJANGO_SETTINGS_MODULE=backend.settings.test coverage run manage.py test
coverage report # For shell report
coverage html # For HTML report
Run the populate.py
script which will create data in the ledger with a traintuple.
Check the status of the created traintuple http://localhost:8000/traintuple/
If everything run correctly, its status should pas from todo->train->trained->testing->tested->done
.
When you want to re-run the testing process:
- Close every connections to the databases.
- Stop all your services and containers.
- Rerun
recreate_db.sh
andclean_media.sh
scripts. - Run the django migrations.
- Relaunch your hlf-k8s network.
- Run the owkin and chunantes substra-backend servers.
- Run celery beat and celery owkin and chu-nantes.
- Run the
populate.py
python script.
You can test your environment by creating a traintuple:
curl -H "Accept: text/html;version=0.0, */*;version=0.0" -H "Content-Type: application/json" -d '{"algo_key":"da58a7a29b549f2fe5f009fb51cce6b28ca184ec641a0c1db075729bb266549b","model_key":"","train_data_sample_keys":["62fb3263208d62c7235a046ee1d80e25512fe782254b730a9e566276b8c0ef3a","42303efa663015e729159833a12ffb510ff92a6e386b8152f90f6fb14ddc94c9"]}' -X POST http://localhost:8001/traintuple/?format=json
It will try to create a traintuple with creator: chu-nantes (localhost:8001).
The chu-nantes celery worker will try to add the traintuple to the ledger.
You can check your traintuple has been corectly added by visiting http://localhost:8000/traintuple/
or http://localhost:8001/traintuple/
As the trainDataSample passed are also created by chu-nantes, the chu-nantes celery worker will try to update the traintuple status to training
and save some data if needed.
You can check http://localhost:8000/traintuple/
or http://localhost:8001/traintuple/
to check if the status of your newly created traintuple is set to training
after 10 sec (celery worker periodic task period).
You can also check a new objective has been added in medias/chu-nantes
with a metrics.py
file but not description.md
file.
For displaying data in a web browser, you will have to override your headers, especially the Accept header for specifiying the version. You can use the modheader extension available here for Chrome and here for Firefox:
You can then configure it like that:
Now you can reach http://localhost:8000/
and http://localhost:8001/
🎉
As for hlf-k8s, you can launch all the services in docker containers.| First, build the images:
$> sh build-docker-images.sh
Then, go to thedocker
dir and run start.py
:
$> python3 start.py
Check your services are correctly started with docker ps -a
.
A directory named fabric-sdk-py_tests
is available to the root of this project.
If you launch a hlf-k8s setup, you will be able to play with theses tests.
For fabric-sdk-py-query-invoke.py
, be sure to have run the generateNetworkFile.py
script for producing the network.json file needed.
If you are using pycharm, you can very easily automate your servers and celery workers run configuration.
Use these configurations for easier debugging and productivity:
![](assets/celery owkin worker.png) ![](assets/celery owkin scheduler.png) ![](assets/celery chunantes worker.png) ![](assets/celery chunantes scheduler.png)
Do not hesitate to put breakpoints in your code. Even with periodic celery tasks and hit the bug
button for launching your pre configurations.
You can even access directly to the databases (password is backend
as described in the beginning of this document):
And for more convenience you can use the multirun plugin from pycharm and configure it as:
This project is developed under the Apache License, Version 2.0 (Apache-2.0), located in the LICENSE file.