1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/doc/postgresql_readme.md
2023-02-15 10:29:54 +01:00

5.6 KiB

Detailed information about PostgreSQL usage in Fab-manager

Run the PostgreSQL command line interface

You may want to access the psql command line tool to check the content of the database, or to run some maintenance routines. This can be achieved doing the following:

cd /apps/fabmanager
docker-compose exec postgres psql -Upostgres

Dumping the database

Use the following commands to dump the PostgreSQL database to an archive file

cd /apps/fabmanager/
docker-compose exec postgres bash
cd /var/lib/postgresql/data/
DB=$(psql -U postgres -c \\l | grep production | awk '{print $1}')
pg_dump -U postgres "$DB" > "${DB}_$(date -I).sql"
tar cvzf "fabmanager_database_dump_$(date -I).tar.gz" "${DB}_$(date -I).sql"

If you're connected to your server thought SSH, you can download the resulting dump file using the following:

scp root@remote.server.fab:/apps/fabmanager/postgresql/fabmanager_database_dump_$(date -I).tar.gz .

Restore the dump with the following:

DUMP=$(tar -tvf "fabmanager_database_dump_$(date -I).tar.gz" | awk '{print $6}')
tar xvf fabmanager_database_dump_$(date -I).tar.gz
sudo cp "$DUMP" /apps/fabmanager/postgresql/
cd /apps/fabmanager/
docker-compose down
docker-compose up -d postgres
docker-compose exec postgres dropdb -U postgres fabmanager_production
docker-compose exec postgres createdb -U postgres fabmanager_production
docker-compose exec postgres psql -U postgres -d fabmanager_production -f "/var/lib/postgresql/data/${DUMP}"
docker-compose up -d

PostgreSQL Limitations

  • While setting up the database, we'll need to activate two PostgreSQL extensions: unaccent and trigram. This can only be achieved if the user, configured in config/database.yml, was granted the SUPERUSER role OR if these extensions were white-listed. So here's your choices, mainly depending on your security requirements:
    • Use the default PostgreSQL super-user (postgres) as the database user. This is the default behavior in Fab-manager.

    • Set your user as SUPERUSER; run the following command in psql (after replacing username with you user name):

      ALTER USER username WITH SUPERUSER;
      
    • Install and configure the PostgreSQL extension pgextwlist. Please follow the instructions detailed on the extension website to whitelist unaccent and trigram for the user configured in config/database.yml.

  • If you intend to contribute to the project code, you will need to run the test suite with scripts/tests.sh. This also requires your user to have the SUPERUSER role. Please see the known issues documentation for more information about this.

Using another DBMS

Some users may want to use another DBMS than PostgreSQL. This is currently not supported, because of some PostgreSQL specific instructions that cannot be efficiently handled with the ActiveRecord ORM:

  • app/services/members/list_service.rb@list is using ILIKE, now()::date and OFFSET;
  • app/services/invoices_service.rb@list is using ILIKE and date_trunc();
  • db/migrate/20160613093842_create_unaccent_function.rb is using unaccent and trigram modules and defines a PL/pgSQL function (f_unaccent());
  • app/controllers/api/members_controller.rb@search is using f_unaccent() (see above);
  • db/migrate/20150604131525_add_meta_data_to_notifications.rb is using jsonb, a PostgreSQL 9.4+ datatype;
  • db/migrate/20160915105234_add_transformation_to_o_auth2_mapping.rb is using jsonb, a PostgreSQL 9.4+ datatype;
  • db/migrate/20181217103441_migrate_settings_value_to_history_values.rb is using SELECT DISTINCT ON;
  • db/migrate/20190107111749_protect_accounting_periods.rb is using CREATE RULE and DROP RULE;
  • db/migrate/20190522115230_migrate_user_to_invoicing_profile.rb is using CREATE RULE and DROP RULE;
  • db/migrate/20200511075933_fix_accounting_periods.rb is using CREATE RULE and DROP RULE;
  • app/models/project.rb is using the pg_search gem.
  • db/migrate/20200622135401_add_pg_search_dmetaphone_support_functions.rb is using fuzzystrmatch module and defines a PL/pgSQL function (pg_search_dmetaphone());
  • db/migrate/20200623134900_add_search_vector_to_project.rb is using tsvector, a PostgreSQL datatype and GIN (Generalized Inverted Index) a PostgreSQL index type;
  • db/migrate/20200623141305_update_search_vector_of_projects.rb defines a PL/pgSQL function (fill_search_vector_for_project()) and create an SQL trigger for this function;
  • db/migrate/20200629123011_update_pg_trgm.rb is using ALTER EXTENSION;
  • db/migrate/20201027101809_create_payment_schedule_items.rb is using jsonb;
  • db/migrate/20230112151631_add_places_cache_to_slot.rb is using jsonb;