mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2022-01-19
This commit is contained in:
@ -63,4 +63,29 @@ Found 2 error(s).
|
||||
|
||||
- Fix some citation formatting issues in Gaia's [eighteen CAS Green Cover publications on DSpace Test](https://dspacetest.cgiar.org/handle/10568/115230)
|
||||
|
||||
## 2022-01-19
|
||||
|
||||
- Francesca was having issues with a submission on CGSpace this week
|
||||
- I checked and see a lot of locks in PostgreSQL:
|
||||
|
||||
```console
|
||||
$ psql -c "SELECT application_name FROM pg_locks pl LEFT JOIN pg_stat_activity psa ON pl.pid = psa.pid" | sort | uniq -c | sort -n
|
||||
1
|
||||
1 ------------------
|
||||
1 (3506 rows)
|
||||
1 application_name
|
||||
9 psql
|
||||
10
|
||||
3487 dspaceWeb
|
||||
```
|
||||
|
||||
- As before, I see messages from PostgreSQL about processes waiting for locks since I enabled the `log_lock_waits` setting last month:
|
||||
|
||||
```console
|
||||
$ grep -E '^2022-01*' /var/log/postgresql/postgresql-10-main.log | grep -c 'still waiting for'
|
||||
12
|
||||
```
|
||||
|
||||
- I set a system alert on DSpace and then restarted the server
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
Reference in New Issue
Block a user