<div align="center"><img height="180" src="https://gitlab.iscpif.fr/gargantext/main/raw/master/images/logo.png"></div> # Gargantext with Haskell (Backend instance)       #### Table of Contents 1. [About the project](#about) 2. [Installation](#install) 3. [Use cases](#use-cases) 4. [Notes for developers](#develop) ## About the project <a name="about"></a> GarganText is a collaborative web-decentralized-based macro-service platform for the exploration of unstructured texts. It combines tools from natural language processing, text-data-mining bricks, complex networks analysis algorithms and interactive data visualization tools to pave the way toward new kinds of interactions with your textual and digital corpora. This software is free (as "Libre" in French) software, developed by the CNRS Complex Systems Institute of Paris Île-de-France (ISC-PIF) and its partners. GarganText Project: this repo builds the backend for the frontend server built by [backend](https://gitlab.iscpif.fr/gargantext/haskell-gargantext). ## Installation <a name="install"></a> Disclaimer: since this project is still in development, this document remains in progress. Please report and improve this documentation if you encounter any issues. ### Prerequisites You need to have the following installed: * [GHCup](https://www.haskell.org/ghcup/) * [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) * [Nix](https://nixos.org/download/) * [Docker Compose](https://docs.docker.com/compose/install/). You will need to add yourself as a member of the `docker` group for Docker Compose to work (replace `myusername` with your username in the following command): ```bash sudo usermod -a -G docker myusername ``` ### Getting the source code ```bash git clone https://gitlab.iscpif.fr/gargantext/haskell-gargantext.git cd haskell-gargantext git clone https://gitlab.iscpif.fr/gargantext/haskell-gargantext.git cd .. ``` ### Building Gargantext #### Building the Backend Run the install script from inside the `haskell-gargantext/` directory: ```bash ./bin/install ``` This will build Gargantext, run the tests, and build the documentation. #### Building the Frontend Move into the `purescript-gargantext/` directory, then run the install script: ```bash cd purescript-gargantext ./bin/install cd .. ``` ### Initialization Rename the `gargantext-settings.toml_toModify` into `gargantext-settings.toml`, and fill in the missing fields. > `.gitignore` excludes this file, so you don't need to worry about committing > it by mistake, and you can change the passwords in `gargantext-settings.toml` > safely. **NOTE** If you had the `gargantext.ini` file before, you can automatically convert it into a file `gargantext-settings.toml` by running the following from a Nix shell: ```shell n$ ./bin/cli ini ``` ### Launching and Initializing the Database Launch the docker image from inside the dedicated directory: ```bash cd devops/docker/ docker compose up ``` Then initialize the database using the dedicated command: from inside the `haskell-gargantext/` directory, run ```bash ./bin/cli init ``` And provide a name and a password for the master user as requested. ### Running Gargantext From inside the `haskell-gargantext/` directory, run ```bash ./bin/run ``` ## Use Cases <a name="use-cases"></a> ### Multi-User with Graphical User Interface (Server Mode) ``` shell $ ~/.local/bin/stack --docker exec gargantext-server -- --run Prod ``` Then you can log in with `user1` / `1resu` ### Command Line Mode tools #### Simple cooccurrences computation and indexation from a list of Ngrams ``` shell $ stack --docker exec gargantext-cli -- CorpusFromGarg.csv ListFromGarg.csv Ouput.json ``` ### Analyzing the ngrams table repo We store the repository in directory `repos` in the [CBOR](https://cbor.io/) file format. To decode it to JSON and analyze, say, using [jq](https://shapeshed.com/jq-json/), use the following command: ``` shell $ cat repos/repo.cbor.v5 | stack exec gargantext-cbor2json | jq . ``` ### Documentation To build documentation, run: ```shell $ stack build --haddock --no-haddock-deps --fast ``` (in `.stack-work/dist/x86_64-linux-nix/Cabal-3.2.1.0/doc/html/gargantext`). ## Notes for developers <a name="develop"></a> ### Developer Documentation If you want to contribute to Gargantext, there is [some documentation geared to developers](https://write.frame.gargantext.org/s/805e1ee2bae24079554d24cdbc8ef5ba5c4ef7d83218c1e86c84af8ac269031d). ### Upgrading Haskell Packages We use `gargantext.cabal`, `cabal.project` and `cabal.project.freeze` as the source of truth. Ouf ot that, we generate the `stack.yaml` file for those who prefer to use Stack. Upgrading packages can be a pain sometimes, with cabal. Here are some tips: - Manually remove entries from your `cabal.project.freeze` to make the build a bit more "elastic"; - Lock the hackage-index state in the `cabal.project`, so that the solver won't try to pull newer dependencies; - Specify constraints you want directly when building like `cabal v2-build --constraint tasty==x.y.z.w` - Generate another `.freeze` with `cabal v2-freeze` once you got the new build to compile (this is good for small, incremental upgrades) - Bounds in `.cabal` are definitely respected, but ofc the `.freeze` takes priority, so you want to maybe use `cabal gen-bounds` when your `.freeze` still exists, remove the file, try again. Also, it's helpful to build with `stack build` from time to time. The warnings are displayed, whenever a different stack lts package is used than the one defined in `.cabal` file - it's an incentive to upgrade the `.cabal` file versions. Occasionally, you can get issues with the `allow-newer: *` constraint from `cabal.project`. E.g. when I was building with GHC 9.4.7, I had errors with `hashable-1.5.0`. The solution is: ```shell cabal v2-build --constraint hashable==1.4.3.0 ``` (we don't depend on `hashable` directly, but `allow-newer: *` is so liberal that a package that is too new is used). Overall, it's preferred to specify strict constraints in `gargantext.cabal` file and to do that, one can use `stack ls dependencies` to have an idea what works. If you want to see the detailed build info for a given dependency: ```shell cabal v2-build -v servant-server ``` Also, you might use the `-Wunused-packages` GHC option, to get a warning about unused packages (make sure though you build all targets with `cabal v2-build all`). Also, here is a relevant discussion: https://discourse.haskell.org/t/whats-your-workflow-to-update-cabal-dependencies/9475 ### Running Tests From nix shell: ```shell n$ cabal v2-test --test-show-details=streaming ``` Or, from "outside": ```shell $ nix-shell --run "cabal v2-test --test-show-details=streaming" ``` If you want to run particular tests, use (for Tasty): ```shell cabal v2-test garg-test-tasty --test-show-details=streaming --test-option=--pattern='/job status update and tracking/ ``` or (for Hspec): ```shell cabal v2-test garg-test-hspec --test-show-details=streaming --test-option=--match='/Dispatcher, Central Exchange, WebSockets/' ``` ### CI The CI is on gitlab and is controlled by the `.gitlab-ci.yml` file. The Docker image that is used can be built with: ```shell podman build -t cgenie/gargantext:9.4.8 -f ./devops/docker/Dockerfile --format=docker . ``` or ```shell docker build -t cgenie/gargantext:9.4.8 -f ./devops/docker/Dockerfile . ``` NOTE: if podman/docker complains about not enough space, it's probably about tmpfs. In that case you can set ```shell mkdir _build export TMPDIR=$(pwd)/_build ``` (https://stackoverflow.com/questions/75845647/changing-podman-build-to-path-with-more-space). ### Working on libraries When a development is needed on libraries (for instance, the HAL crawler in https://gitlab.iscpif.fr/gargantext/crawlers): 1. Ongoing devlopment (on local repo): 1. In `cabal.project`: - add `../hal` to `packages:` - turn off (temporarily) the `hal` in `source-repository-package` 2. When changes work and tests are OK, commit in repo `hal` 2. When changes are commited / merged: 1. Get the hash id, and edit `cabal.project` with the **new commit id** 2. run `./bin/update-project-dependencies` - get an error that sha256 don't match, so update the `./bin/update-project-dependencies` with new sha256 hash - run again `./bin/update-project-dependencies` (to make sure it's a fixed point now) > Note: without `stack.yaml` we would have to only fix `cabal.project` -> `source-repository-package` commit id. Sha256 is there to make sure CI reruns the tests. ### GraphQL Some introspection information. Playground is located at http://localhost:8008/gql #### List all GraphQL types in the Playground ``` { __schema { types { name } } } ``` #### List details about a type in GraphQL ``` { __type(name:"User") { fields { name description type { name } } } } ``` ### PostgreSQL <a name="pgsql"></a> #### Upgrading using Docker https://www.cloudytuts.com/tutorials/docker/how-to-upgrade-postgresql-in-docker-and-kubernetes/ To upgrade PostgreSQL in Docker containers, for example from 11.x to 14.x, simply run: ```shell $ docker exec -it <container-id> pg_dumpall -U gargantua > 11-db.dump ``` Then, shut down the container, replace `image` section in `devops/docker/docker-compose.yaml` with `postgres:14`. Also, it is a good practice to create a new volume, say `garg-pgdata14` and bind the new container to it. If you want to keep the same volume, remember about removing it like so: ```shell $ docker-compose rm postgres $ docker volume rm docker_garg-pgdata ``` Now, start the container and execute: ```shell $ # need to drop the empty DB first, since schema will be created when restoring the dump $ docker exec -i <new-container-id> dropdb -U gargantua gargandbV5 $ # recreate the db, but empty with no schema $ docker exec -i <new-container-id> createdb -U gargantua gargandbV5 $ # now we can restore the dump $ docker exec -i <new-container-id> psql -U gargantua -d gargandbV5 < 11-db.dump ``` #### Upgrading using There is a solution using pgupgrade_cluster but you need to manage the clusters version 14 and 13. Hence here is a simple solution to upgrade. First save your data: ```shell $ sudo su postgres $ pg_dumpall > gargandb.dump ``` Upgrade postgresql: ```shell $ sudo apt install postgresql-server-14 postgresql-client-14 $ sudo apt remove --purge postgresql-13 ``` Restore your data: ```shell $ sudo su postgres $ psql < gargandb.dump ``` Maybe you need to restore the gargantua password ```shell $ ALTER ROLE gargantua PASSWORD 'yourPasswordIn_gargantext-settings.toml' ``` Maybe you need to change the port to 5433 for database connection in your gargantext.ini file. ## `haskell-language-server` If you want to use `haskell-language-server` for GHC 9.4.7, install it with `ghcup`: ```shell ghcup compile hls --version 2.7.0.0 --ghc 9.4.7 ``` https://haskell-language-server.readthedocs.io/en/latest/installation.html # Async workers Async workers allow us to accept long-running jobs and execute them asynchronously. Workers can be spawned on multiple machines, which allows for scaling. To run the worker, follow these steps: - start a PostgreSQL DB, usually the one with Gargantext DB is enough - `"simple"` worker definition is in `gargantext-settings.toml` - run worker: `cabal v2-run gargantext-cli -- worker --name simple` When running the worker for the first time (or sending a job), best attempt is made to ensure the DB exists (if not, we will try to create it) and the `pgmq` schema is initialized. This allows for hassle-free maintenance and easier onboarding. The project that we base our worker is [haskell-bee](https://gitlab.iscpif.fr/gargantext/haskell-bee/). It's a more generic framework for managing asynchronous workers, supporting different brokers. Here, we decided to use `pgmq` because we already have PostgreSQL deployed. ## Design Thanks to the fact that we already use `Servant.Jobs` (which executes the jobs in the gargantext-API process), we can migrate our jobs more easily to a different backend. All job definitions are in `G.A.A.EnvTypes` under `GargJob` datatype. However, because of a bit different design, the contsructors for this datatype are empty, without their respective arguments. Hence, I created `G.C.W.J.Types` with the `Job` datatype. Hopefully, in the future, we can replace `GargJob` with this datatype. If you want to add a new job, just add a new constructor to `Job` (with all the arguments this job needs), implement to/from JSON serialization (so we can send and read that job via the broker) and implement appropriate handler in `G.C.Worker` -> `performAction`. ## No storage backend When you compare `haskell-bee` with the [celery project](https://docs.celeryq.dev/en/stable/), you can notice 2 things: - both have configurable brokers - `haskell-bee` doesn't have a storage backend This is because, when analyzing our tasks, we actually don't store any **task** results anywhere. The progress can be reported immediately via notifications, same for errors. And when a task is executed (e.g. add to corpus with query), the garg db state is mutated. One could discuss if such a **task** storage backend is needed: if you want to debug some task, just run the worker and log its results. You can inspect later the errors in the log. On the other hand, if we had a production worker, which processes lots of tasks, it could be a pain to store the results of all of them, as we mostly don't care about the finished ones. Also, the `haskell-bee` framework allows to add custom hooks to the worker. In particular, search for `onJobError`/`onJobTimeout` in `Worker.State`. We could trigger some `IO` action on these hooks (logging, sending mail, firing rockets).