Add notes for 2023-07-31

This commit is contained in:
2023-08-02 23:04:11 +03:00
parent 9a2de13f21
commit 190a1ee4a3
32 changed files with 59 additions and 37 deletions

View File

@ -309,4 +309,16 @@ $ csvcut -c 'cg.contributor.affiliation[en_US]' ~/Downloads/2023-07-28-initiativ
- This is a method I first used in 2023-01 to export affiliations ONLY used in items in the Initiatives community
- I did the same for authors and investors
## 2023-07-29
- Export CGSpace to look for missing Initiative collection mappings
- I found a bunch of locks waiting for many hours and killed them:
```console
$ psql < locks-age.sql | awk -F"|" '$9 ~ / [[:digit:]][1-9]:[[:digit:]]{2}:[[:digit:]]{2}\./ {print $10}' | sort -u | xargs kill
```
- This looks for a pattern matching something like `11:30:48.598436` in the age column (not 00:00:00) and kills them
- Start a harvest on AReS
<!-- vim: set sw=2 ts=2: -->