Add notes

This commit is contained in:
2024-02-27 17:18:35 +03:00
parent 0692b8666c
commit 483a170f06
38 changed files with 535 additions and 131 deletions

View File

@ -85,4 +85,26 @@ kernel: Out of memory: Killed process 698 (java) total-vm:14151300kB, anon-rss:9
- I updated the submission form on CGSpace to include the new changes to URLs for datasets
- I also updated about 80 datasets to move the URLs to the correct field
## 2024-02-25
- This morning Tomcat died while I was doing a CSV export, with an OOM kill from the kernel:
```console
kernel: Out of memory: Killed process 720768 (java) total-vm:14079976kB, anon-rss:9301684kB, file-rss:152kB, shmem-rss:0kB, UID:997 pgtables:19488kB oom_score_adj:0
```
- I don't know why this is happening so often recently...
## 2024-02-27
- IFPRI sent me a list of authors to add to our list for now, until we can find a better way of doing it
- I extracted the existing authors from our controlled vocabulary and combined them with IFPRI's:
```console
$ xmllint --xpath '//node/isComposedBy/node()' dspace/config/controlled-vocabularies/dc-contributor-author.xml \
| grep -oE 'label=".*"' \
| sed -e 's/label="//' -e 's/"$//' > /tmp/authors
$ cat /tmp/authors /tmp/ifpri-authors | sort -u > /tmp/new-authors
```
<!-- vim: set sw=2 ts=2: -->