mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2023-12-05
This commit is contained in:
@ -73,4 +73,40 @@ $ chrt -b 0 ./run.sh -s http://localhost:8081/solr/statistics -a export -o /tmp/
|
||||
- Export CGSpace to check for missing Initiative collection mappings
|
||||
- Start a harvest on AReS
|
||||
|
||||
## 2023-12-04
|
||||
|
||||
- Send a message to Altmetric support because the item IWMI highlighted last month still doesn't show the attention score for the Handle after I tweeted it several times weeks ago
|
||||
- Spent some time writing a Python script to fix the literal MaxMind City JSON objects in our Solr statistics
|
||||
- There are about 1.6 million of these, so I exported them using solr-import-export-json with the query `city:com*` but ended up finding many that have missing bundles, container bitstreams, etc:
|
||||
|
||||
```
|
||||
city:com* AND -bundleName:[* TO *] AND -containerBitstream:[* TO *] AND -file_id:[* TO *] AND -owningItem:[* TO *] AND -version_id:[* TO *]
|
||||
```
|
||||
|
||||
- (Note the negation to find fields that are missing)
|
||||
- I don't know what I want to do with these yet
|
||||
|
||||
## 2023-12-05
|
||||
|
||||
- I finished the `fix_maxmind_stats.py` script and fixed 1.6 million records and imported them on CGSpace after testing on DSpace 7 Test
|
||||
- Altmetric said there was a glitch regarding the Handle and DOI linking and they successfully re-scraped the item page and linked them
|
||||
- They sent me a list of current production IPs and I notice that some of them are in our nginx bot network list:
|
||||
|
||||
```console
|
||||
$ for network in $(csvcut -c network /tmp/ips.csv | sed 1d | sort -u); do grepcidr $network ~/src/git/rmg-ansible-public/roles/dspace/files/nginx/bot-networks.conf; done
|
||||
108.128.0.0/13 'bot';
|
||||
46.137.0.0/16 'bot';
|
||||
52.208.0.0/13 'bot';
|
||||
52.48.0.0/13 'bot';
|
||||
54.194.0.0/15 'bot';
|
||||
54.216.0.0/14 'bot';
|
||||
54.220.0.0/15 'bot';
|
||||
54.228.0.0/15 'bot';
|
||||
63.32.242.35/32 'bot';
|
||||
63.32.0.0/14 'bot';
|
||||
99.80.0.0/15 'bot'
|
||||
```
|
||||
|
||||
- I will remove those for now so that Altmetric doesn't have any unexpected issues harvesting
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
Reference in New Issue
Block a user