Add notes for 2022-02-26

This commit is contained in:
2022-02-26 12:49:19 +03:00
parent edacbe8b63
commit d6c9b70e3a
26 changed files with 94 additions and 32 deletions

View File

@ -548,4 +548,36 @@ dspace=# UPDATE metadatavalue SET text_value='Scientists' WHERE dspace_object_id
UPDATE 2
```
## 2022-02-25
- A few days ago Gaia sent me her notes on the third batch of TAC/ICW documents (items 401700 in the spreadsheet)
- I created a filter in LibreOffice and selected the IDs for items with the action "delete", then I created a custom text facet in OpenRefine with this GREL:
```
or(
isNotNull(value.match('405')),
isNotNull(value.match('410')),
isNotNull(value.match('412')),
isNotNull(value.match('414')),
isNotNull(value.match('419')),
isNotNull(value.match('436')),
isNotNull(value.match('448')),
isNotNull(value.match('449')),
isNotNull(value.match('450')),
...
isNotNull(value.match('699'))
)
```
- Then I flagged all matching records, exported a CSV to use with SAFBuilder, and imported them on DSpace Test:
```console
$ JAVA_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" dspace import --add --eperson=fuuu@umm.com --source /tmp/SimpleArchiveFormat --mapfile=./2022-02-25-tac-batch3-401to700.map
```
## 2022-02-26
- Upgrade CGSpace (linode18) to Ubuntu 20.04
- Start a full AReS harvest
<!-- vim: set sw=2 ts=2: -->