Update notes for 2020-11-08

This commit is contained in:
2020-11-08 15:03:02 +02:00
parent 08ee71b8f8
commit 2e12e568f9
22 changed files with 52 additions and 27 deletions

View File

@ -63,5 +63,17 @@ sys 2m26.931s
- Add "ANDEAN ROOTS AND TUBERS" to CIP subjects on CGSpace
- Add CGIAR System subjects to Discovery sidebar facets on CGSpace
- Also add the System subject to item view on CGSpace
- The statistics-2014 core finished processing after five hours, so I started processing the statistics-2013 core on DSpace Test
- Since I was going to restart CGSpace and update the Discovery indexes anyways I decided to check for any straggling upper case AGROVOC entries and lower case them:
```
dspace=# BEGIN;
dspace=# UPDATE metadatavalue SET text_value=LOWER(text_value) WHERE resource_type_id=2 AND metadata_field_id=57 AND text_value ~ '[[:upper:]]';
UPDATE 164
dspace=# COMMIT;
```
- Run system updates on CGSpace (linode18) and reboot it
- I had to restart Tomcat once after the machine started up to get all Solr statistics cores to load properly
<!-- vim: set sw=2 ts=2: -->