Daily acoustid update files dont seem to report the disabled acoustid/mbid pairings for the day they are disabled (at all)
This page https://acoustid.org/track/0161da2e-85d6-435a-8978-0c15a8df3df5#58ce3b51-da28-4bdd-9279-56eb6c16ac30 shows “Meddle” Radio Advert was disabled on 23rd June 2020
So I downloaded the files for that day and searched for the associated mbid unlinked in the file
grep 58ce3b51-da28-4bdd-9279-56eb6c16ac30 2020-06-23-track_mbid-update.jsonl
but no matches
I then looked for any disabled records for that day, and there were some, here are the first two
2020-06-23-track_mbid-update.jsonl:{"id":2263529,"track_id":8895037,"mbid":"a78d43e5-4724-4b57-ac8f-aff521f97d97","submission_count":1,"disabled":true,"created":"2011-08-26T13:46:22.519936+00:00","updated":"2020-06-23T08:57:19.723022+00:00"}
2020-06-23-track_mbid-update.jsonl:{"id":10827664,"track_id":18475023,"mbid":"03e02a24-1d09-45cb-92d4-32a84f36b37d","submission_count":1,"disabled":true,"created":"2014-06-03T11:59:18.380241+00:00","updated":"2020-06-23T13:38:22.6228
So looked up the track to get track gid (my tables are based on acoustid-server but maybe named slightly different)
jthinksearch=# select * from acoustid_track where id=8895037;
id | created | gid | new_id
---------+-------------------------------+--------------------------------------+--------
8895037 | 2011-08-19 12:45:49.831943+00 | eeb951c4-c47b-4087-a23e-2e9b3ffa19b7 | \N
(1 row)
https://acoustid.org/track/eeb951c4-c47b-4087-a23e-2e9b3ffa19b7
and we can see that although a78d43e5-4724-4b57-ac8f-aff521f97d97 was disabled for this Acoustid it was done on Jan, 09 2015 17:40:54 (by a bot) not 2020-06-23T08:57:19 as the line in the file implies.
So I don't see why this record is in that file and why the one I was looking for is not.
Daily acoustid update files dont seem to report the disabled acoustid/mbid pairings for the day they are disabled (at all)
This page https://acoustid.org/track/0161da2e-85d6-435a-8978-0c15a8df3df5#58ce3b51-da28-4bdd-9279-56eb6c16ac30 shows “Meddle” Radio Advert was disabled on 23rd June 2020
So I downloaded the files for that day and searched for the associated mbid unlinked in the file
grep 58ce3b51-da28-4bdd-9279-56eb6c16ac30 2020-06-23-track_mbid-update.jsonlbut no matches
I then looked for any disabled records for that day, and there were some, here are the first two
So looked up the track to get track gid (my tables are based on acoustid-server but maybe named slightly different)
https://acoustid.org/track/eeb951c4-c47b-4087-a23e-2e9b3ffa19b7
and we can see that although a78d43e5-4724-4b57-ac8f-aff521f97d97 was disabled for this Acoustid it was done on Jan, 09 2015 17:40:54 (by a bot) not 2020-06-23T08:57:19 as the line in the file implies.
So I don't see why this record is in that file and why the one I was looking for is not.