Add notes for 2018-12-20

This commit is contained in:
2018-12-20 12:56:16 +02:00
parent 50f7ca9398
commit 5ca656ee15
2 changed files with 38 additions and 1 deletions

View File

@ -405,4 +405,21 @@ Mozilla/3.0 (compatible; Indy Library)
- Update Atmire Listings and Reports to add the journal title (`dc.source`) to bibliography and update example bibliography values ([#405](https://github.com/ilri/DSpace/pull/405))
## 2018-12-20
- Testing compression of PostgreSQL backups with xz and gzip:
```
$ time xz -c cgspace_2018-12-19.backup > cgspace_2018-12-19.backup.xz
xz -c cgspace_2018-12-19.backup > cgspace_2018-12-19.backup.xz 48.29s user 0.19s system 99% cpu 48.579 total
$ time gzip -c cgspace_2018-12-19.backup > cgspace_2018-12-19.backup.gz
gzip -c cgspace_2018-12-19.backup > cgspace_2018-12-19.backup.gz 2.78s user 0.09s system 99% cpu 2.899 total
$ ls -lh cgspace_2018-12-19.backup*
-rw-r--r-- 1 aorth aorth 96M Dec 19 02:15 cgspace_2018-12-19.backup
-rw-r--r-- 1 aorth aorth 94M Dec 20 11:36 cgspace_2018-12-19.backup.gz
-rw-r--r-- 1 aorth aorth 93M Dec 20 11:35 cgspace_2018-12-19.backup.xz
```
- Looks like it's really not worth it...
<!-- vim: set sw=2 ts=2: -->