Go to file
2021-11-15 14:09:55 +01:00
app Fix cli run commands 2021-09-22 14:13:59 +02:00
migrations Add simple api package including authentication (BasicAuth and TokenAuth) 2021-09-14 12:52:23 +02:00
tests Simplify Config setup and move some functions to dedicated files 2021-09-15 12:31:53 +02:00
.dockerignore Change directory structure (move ./nopaque/* to ./) 2021-07-20 15:07:42 +02:00
.env.tpl Make it possible to configure different log levels for stderr and file logging 2021-09-16 11:04:47 +02:00
.flaskenv Simplify Config setup and move some functions to dedicated files 2021-09-15 12:31:53 +02:00
.gitignore Enable advanced logging features 2021-09-15 17:58:17 +02:00
boot.sh Rename TaskRunner to Daemon (because it essentially is one) and restructure cli 2021-09-22 13:53:39 +02:00
config.py Rename TaskRunner to Daemon (because it essentially is one) and restructure cli 2021-09-22 13:53:39 +02:00
db.env.tpl Next big config update. Check the .env.tpl and db.env.tpl 2020-10-21 13:07:10 +02:00
docker-compose.development.yml Remove unused files. 2021-09-22 14:01:47 +02:00
docker-compose.scale.yml add stuff to enable instance scaling 2020-11-19 15:20:49 +01:00
docker-compose.traefik.yml Add config variables in order to create links outside of a request context 2020-11-17 10:16:40 +01:00
docker-compose.yml Enable advanced logging features 2021-09-15 17:58:17 +02:00
Dockerfile Bump Python version 2021-11-15 14:09:55 +01:00
nopaque.py Enable advanced logging features 2021-09-15 17:58:17 +02:00
README.md Change directory structure (move ./nopaque/* to ./) 2021-07-20 15:07:42 +02:00
requirements.txt Fix bug on corpus analysis startup 2021-09-15 14:14:23 +02:00

nopaque

nopaque bundles various tools and services that provide humanities scholars with DH methods and thus can support their various individual research processes. Using nopaque, researchers can subject digitized sources to Optical Character Recognition (OCR). The resulting text files can then be used as a data basis for Natural Language Processing (NLP). The texts are automatically subjected to various linguistic annotations. The data processed via NLP can then be summarized in the web application as corpora and analyzed by means of an information retrieval system through complex search queries. The range of functions of the web application will be successively extended according to the needs of the researchers.

Prerequisites and requirements

  1. Install docker for your system. Following the official instructions.
  2. Install docker-compose. Following the official instructions.

Configuration and startup

Create Docker swarm

The generated computational workload is handled by a Docker swarm. A swarm is a group of machines that are running Docker and joined into a cluster. It consists out of two different kinds of members, manager and worker nodes. The swarm setup process is described best in the Docker documentation.

Create network storage

A shared network space is necessary so that all swarm members have access to all the data. To achieve this a samba share is used.

# Example: Create a Samba share via Docker
# More details can be found under https://hub.docker.com/r/dperson/samba/
username@hostname:~$ sudo mkdir -p /srv/samba/nopaque
username@hostname:~$ docker run \
                       --name opaque_storage \
                       -v /srv/samba/nopaque:/srv/samba/nopaque \
                       -p 139:139 \
                       -p 445:445 \
                       dperson/samba \
                         -p -r -s "nopaque;/srv/samba/nopaque;no;no;no;nopaque" -u "nopaque;nopaque"

# Mount the Samba share on all swarm nodes (managers and workers)
username@hostname:~$ sudo mkdir /mnt/nopaque
username@hostname:~$ sudo mount --types cifs --options gid=${USER},password=nopaque,uid=${USER},user=nopaque,vers=3.0 //<SAMBA-SERVER-IP>/nopaque /mnt/nopaque

Download, configure and build nopaque

# Clone the nopaque repository
username@hostname:~$ git clone https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
# Create data directories for the database and message queue
username@hostname:~$ mkdir data/{db,mq}
username@hostname:~$ cp db.env.tpl db.env
username@hostname:~$ cp .env.tpl .env
# Fill out the variables within these files.
username@hostname:~$ <YOUR EDITOR> db.env
username@hostname:~$ <YOUR EDITOR> .env
# Create docker-compose.override.yml file
username@hostname:~$ touch docker-compose.override.yml
# Tweak the docker-compose.override.yml to satisfy your needs. (You can find examples in docker-compose.<example>.yml)
username@hostname:~$ <YOUR EDITOR> docker-compose.override.yml
# Build docker images
username@hostname:~$ docker-compose build

Start your instance

# Create log files
touch nopaque.log nopaqued.log
# For background execution add the -d flag
username@hostname:~$ docker-compose up
# To scale your app use the following command after starting it normally
username@hostname:~$ docker-compose -f docker-compose.yml \
                                    -f docker-compose.override.yml
                                    -f docker-compose.scale.yml
                                    up
                                    -d --no-recreate --scale nopaque=<NUM_INSTANCES>