Skip to content

ufal/dspace-migrate

 
 

Repository files navigation

Dspace-python-api

used for blackbox testing, data-ingestion procedures

How to migrate CLARIN-DSpace5.* to CLARIN-DSpace7.*

Important:

Make sure that your email server is NOT running because some of the endpoints that are used are sending emails to the input email addresses. For example, when using the endpoint for creating new registration data, there exists automatic function that sends email, what we don't want because we use this endpoint for importing existing data.

Prerequisites:

  1. Install CLARIN-DSpace7.*. (postgres, solr, dspace backend)

2.1. Clone python-api: https://github.com/ufal/dspace-python-api (branch main) and https://github.com/ufal/DSpace (branch clarin-v7) 2.2. Clone submodules: 2.2.1.: git submodule update --init libs/dspace-rest-python/

  1. Get database dump (old CLARIN-DSpace) and unzip it into input/dump directory in dspace-python-api project.

  2. Create CLARIN-DSpace5.* databases (dspace, utilities) from dump. Run scripts/start.local.dspace.db.bat or use scipts/init.dspacedb5.sh directly with your database.


  1. Go to the dspace/bin in dspace7 installation and run the command dspace database migrate force (force because of local types). NOTE: dspace database migrate force creates default database data that may be not in database dump, so after migration, some tables may have more data than the database dump. Data from database dump that already exists in database is not migrated.

  2. Create an admin by running the command dspace create-administrator in the dspace/bin


  1. Create JSON files from the database tables. NOTE: You must do it for both databases clarin-dspace and clarin-utilities (JSON files are stored in the data folder)
  • Go to dspace-python-api and run
pip install -r requirements.txt
(optional on ubuntu like systems) apt install libpq-dev
python db_to_json.py --database=clarin-dspace
python db_to_json.py --database=clarin-utilities

  1. Prepare dspace-python-api project for migration
  • copy the files used during migration into input/ directory:
> ls -R ./input
input:
data dump  icon

input/data:
bitstream.json                   fileextension.json                    piwik_report.json
bitstreamformatregistry.json     ...

input/dump:
clarin-dspace-8.8.23.sql  clarin-utilities-8.8.23.sql

input/icon:
aca.png  by.png  gplv2.png  mit.png    ...

  1. update project_settings.py

  1. Make sure, your backend configuration (dspace.cfg) includes all handle prefixes from generated handle json in property handle.additional.prefixes, e.g.,handle.additional.prefixes = 11858, 11234, 11372, 11346, 20.500.12801, 20.500.12800

  2. Copy assetstore from dspace5 to dspace7 (for bitstream import). assetstore is in the folder where you have installed DSpace dspace/assetstore.


  1. Import data from the json files (python-api/input/) into dspace database (CLARIN-DSpace7.)
  • NOTE: database must be up to date (dspace database migrate force must be called in the dspace/bin)
  • NOTE: dspace server must be running
  • run command cd ./src && python repo_import.py

!!!Migration notes:!!!

  • The values of table attributes that describe the last modification time of dspace object (for example attribute last_modified in table Item) have a value that represents the time when that object was migrated and not the value from migrated database dump.
  • If you don't have valid and complete data, not all data will be imported.
  • check if license link contains XXX. This is of course unsuitable for production run!

Check import consistency

Use tools/repo_diff utility, see README.

About

Blackbox tests for dspace repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.5%
  • Shell 1.1%
  • Batchfile 0.4%