Add notes for 2023-09-22

This commit is contained in:
2023-09-23 10:15:01 +03:00
parent aeaa397612
commit aa6cbb488d
32 changed files with 176 additions and 37 deletions

View File

@ -144,4 +144,70 @@ $ join -t, -v 2 -11 -21 -o auto /tmp/cgspace-ilri-slideshare-sorted-only-urls-so
- Important to note that you must use GNU `sort` on the fiels first, as I had tried sorting in vim and it didn't satisfy `join`
- So it seems there are 542 Slideshare presentations we are missing
## 2023-09-20
- Regarding the incorrect city in Solr statistics, I see we have 1,600,000 of them
- Before filing a GitHub issue, I want to check if they maybe come from an Atmire module, as I see them clustered around two particular CUA versions:
```json
{
"responseHeader": {
"status": 0,
"QTime": 2760,
"params": {
"q": "city:com.maxmind.geoip2.record.City*",
"facet.field": "cua_version",
"indent": "true",
"rows": "0",
"wt": "json",
"facet": "true",
"_": "1695192301927"
}
},
"response": {
"numFound": 1661863,
"start": 0,
"docs": []
},
"facet_counts": {
"facet_queries": {},
"facet_fields": {
"cua_version": [
"6.x-4.1.10-ilri-RC7",
1112186,
"6.x-4.1.10-ilri-RC5",
451180,
"6.x-4.1.10-ilri-RC9",
0
]
},
"facet_dates": {},
"facet_ranges": {},
"facet_intervals": {}
}
}
```
- I migrated AReS from Linode to Hetzner
- I asked on Slack and someone told me that we need to edit `src/app/menu.resolver.ts` to add new drop down menus to the top navbar
- It works, though is unfortunate that we can't do it in a theme
## 2023-09-21
- More minor work on DSpace 7 home page and menus
- Meeting to discuss types and DSpace 7 migration plans
- Create a DSpace 7 theme for IITA
## 2023-09-22
- Create a DSpace 7 theme for IWMI
- I had some issues with pm2 on the new DSpace 7 Test
- It seems to be due to mixing systemd starting versus manually starting / stopping...
- After reading the discussion in [this pm2 issue](https://github.com/Unitech/pm2/issues/2914) I realize that we probably need to use `--no-daemon` to have systemd fully manage the processes without pm2 trying to save state
## 2023-09-23
- Export CGSpace to check for missing Initiative collection mappings
- Start a harvest on AReS
<!-- vim: set sw=2 ts=2: -->