-
- Downloads
Make most 'swh db xxx' commands support reading the db cnx string from anywhere in the config file
Allow db commands (create, init-admin, init, version, upgrade) get the db connection string from anywhere in the config file. For example, it can be used like: $ cat conf.yml storage: cls: pipeline steps: - cls: masking masking_db: postgresql:///?service=swh-masking-proxy - cls: buffer - cls: postgresql db: postgresql://user:passwd@pghost:5433/swh-storage objstorage: cls: memory $ swh db -C conf.yml init storage:steps:0:masking_db This de facto deprecates the usage of the --module-config-key option. Also add a -a/--all option to these commands allowing to execute the given command to all matching configuration entries in the config file; this should help deployment in testing environments like docker. For example: $ swh db version -a storage module: storage.proxies.masking current code version: 194 version: 194 module: storage flavor: default current code version: 193 version: 193 This change also make the module name stored in the dbmodule table an fully qualified module instead of shortened version, i.e. it will now store 'swh.storage.postgresql.storage' instead of just 'storage', so there is less "implicit logic" (like removing "swh.", etc.) when filling/using this piece of information. We add a bw compat support in get_sql_for_package to ease the transition until the dbmodule tables are updated. This bw compat logic will look for the 'sql/' directory not only in the package directly for the module, but also in parent directories. This allows to keep the code compatible with current version of swh.storage (in which the sql/ directory and the actual backend submodule do not match). Doing this, we also stop defining a hardwritten dbname ('softwareheritage-dev') as default value for the '--dbname' option in 'swh db create' command. Warning: for the 'create' and 'init-admin' db commands, looking for the connection string in the config file is mainly useful for test environments in which the user used to access the backend database have superuser permissions on the database. In production-like environments, you most certainly will prefer using an explicit --dbname argument with a connection with enough permission to handle the job.
Showing
- swh/core/cli/db.py 434 additions, 150 deletionsswh/core/cli/db.py
- swh/core/config.py 53 additions, 1 deletionswh/core/config.py
- swh/core/db/db_utils.py 11 additions, 8 deletionsswh/core/db/db_utils.py
- swh/core/db/tests/conftest.py 64 additions, 5 deletionsswh/core/db/tests/conftest.py
- swh/core/db/tests/data/cli2/sql/0-superuser-init.sql 1 addition, 0 deletionsswh/core/db/tests/data/cli2/sql/0-superuser-init.sql
- swh/core/db/tests/data/cli2/sql/30-schema.sql 6 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/30-schema.sql
- swh/core/db/tests/data/cli2/sql/40-funcs.sql 6 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/40-funcs.sql
- swh/core/db/tests/data/cli2/sql/50-data.sql 2 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/50-data.sql
- swh/core/db/tests/data/cli2/sql/upgrades/001.sql 5 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/001.sql
- swh/core/db/tests/data/cli2/sql/upgrades/002.sql 4 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/002.sql
- swh/core/db/tests/data/cli2/sql/upgrades/003.sql 4 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/003.sql
- swh/core/db/tests/data/cli2/sql/upgrades/004.sql 4 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/004.sql
- swh/core/db/tests/data/cli2/sql/upgrades/005-bis.sql 7 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/005-bis.sql
- swh/core/db/tests/data/cli2/sql/upgrades/005.sql 4 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/005.sql
- swh/core/db/tests/data/cli2/sql/upgrades/006.sql 7 additions, 0 deletionsswh/core/db/tests/data/cli2/sql/upgrades/006.sql
- swh/core/db/tests/test_cli.py 497 additions, 84 deletionsswh/core/db/tests/test_cli.py
- swh/core/db/tests/test_db_utils.py 29 additions, 18 deletionsswh/core/db/tests/test_db_utils.py
Loading
Please register or sign in to comment