You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The column pair (track_id, mbid) of the table track_mbid should be unique. However, there are records where this isn't the case.
Example and steps to reproduce:
2016-12-25-track_mbid-update.jsonl.gz says that the (track_id=25853676, mbid=3a17f2f7-8f91-434d-a9cf-a9923a83d051) record has ID 14531123 and was created on 2016-12-25:
I first thought that the original record (with ID 14531123) might have been accidentally deleted somehow and that the new record (with ID 18527045) has then been re-inserted later on. However, this apparently isn't the case: the original record has still been updated on 2022-01-16, which is after the new record has been created (on 2020-02-05). Hence, both records must actually have existed at the same time.
This makes no sense to me. Is there an explanation for this?
Thank you!
The text was updated successfully, but these errors were encountered:
After checking again on this, it seems that this is just a minor issue. Luckily, there are just 458 tracks which are affected by this problem (as per database snapshot 2023-05-20). That number was found with the following query:
SELECT track_id, mbid, count(*) FROM track_mbid GROUP BY track_id, mbid HAVING count(*) > 1;
However, for those few tracks which are affected by this, the submission counts (and sometimes also the disabled status) of the linked MusicBrainz recordings are incorrect. This is also true for the main database on acoustid.org itself.
Here is an example of a track with an incorrect disabled status. The 2020-03-04-track_mbid-update.jsonl.gz says that the link from AcoustID track 16460536 to MusicBrainz recording 6f32542e-c6eb-45cc-a317-b4d8399cbbf6 has been disabled on 2020-03-04:
There is some kind of consistency issue with the data provided at https://data.acoustid.org
The column pair
(track_id, mbid)
of the tabletrack_mbid
should be unique. However, there are records where this isn't the case.Example and steps to reproduce:
2016-12-25-track_mbid-update.jsonl.gz says that the
(track_id=25853676, mbid=3a17f2f7-8f91-434d-a9cf-a9923a83d051)
record has ID14531123
and was created on2016-12-25
:However, 2020-02-05-track_mbid-update.jsonl.gz instead says that this exact record has ID
18527045
and was created on2020-02-05
:I first thought that the original record (with ID
14531123
) might have been accidentally deleted somehow and that the new record (with ID18527045
) has then been re-inserted later on. However, this apparently isn't the case: the original record has still been updated on2022-01-16
, which is after the new record has been created (on2020-02-05
). Hence, both records must actually have existed at the same time.This makes no sense to me. Is there an explanation for this?
Thank you!
The text was updated successfully, but these errors were encountered: