Add notes for 2022-03-25

This commit is contained in:
2022-03-25 12:17:36 +03:00
parent 31690d514c
commit c2e1140591
26 changed files with 73 additions and 31 deletions

View File

@ -202,4 +202,23 @@ Due to abuse we no longer permit requests without a user agent. Please specify a
- I did this on DSpace Test in 2022-02 so I just followed the same procedure
- After that I ran all system updates and rebooted the server
## 2022-03-25
- Looking at the PostgreSQL database size on CGSpace after the update yesterday:
![PostgreSQL database size day](/cgspace-notes/2022/03/postgres_size_cgspace-day.png)
- The space saving in indexes of recent PostgreSQL releases is awesome!
- Import a DSpace 6.x database dump from production into my local DSpace 7 database
- I see I still the same errors [I saw in 2021-04]({{< relref "2021-04.md" >}}) when testing DSpace 7.0 beta 5
- I had to delete some old migrations, as well as all Atmire ones first:
```console
localhost/dspace7= ☘ DELETE FROM schema_version WHERE version IN ('5.0.2017.09.25', '6.0.2017.01.30', '6.0.2017.09.25');
localhost/dspace7= ☘ DELETE FROM schema_version WHERE description LIKE '%Atmire%' OR description LIKE '%CUA%' OR description LIKE '%cua%'
```
- Then I was able to migrate to DSpace 7 with `dspace database migrate ignored` as the [DSpace upgrade notes say](https://wiki.lyrasis.org/display/DSDOC7x/Upgrading+DSpace)
- I see that the [flash of unstyled content bug](https://github.com/DSpace/dspace-angular/issues/1357) still exists on dspace-angluar... ouch!
<!-- vim: set sw=2 ts=2: -->