-
Notifications
You must be signed in to change notification settings - Fork 500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
618 local files with size "0 bytes" or "null" #3642
Comments
Proposed fix:
|
I just noticed this issue mentioned at https://help.hmdc.harvard.edu/Ticket/Display.html?id=257561 and wanted to point out that https://services.dataverse.harvard.edu/miniverse/qc/dashboard has a "File size 0 or null" check. As of this writing it shows 874 files, like this: |
This issue is super-specific to Harvard Dataverse. No one seems to be championing it. Closing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(Queries are shown below for further checking/sanity checks)
Fizesize is null
Fizesize is 0
(1a)
Select count(*) from datafile where filesize is null;
(1b)
select count(df.id) from datafile df, dvobject dv where df.filesize is null and df.id = dv.id and dv.owner_id in (select id from dataset where harvestingclient_id is not null);
(1c)
select count(df.id) from datafile df, dvobject dv where df.filesize is null and df.id = dv.id and dv.owner_id in (select id from dataset where harvestingclient_id is null);
(2a)
Select count(*) from datafile where filesize = 0;
(2b)
select count(df.id) from datafile df, dvobject dv where df.filesize = 0 and df.id = dv.id and dv.owner_id in (select id from dataset where harvestingclient_id is null);
(2c)
select count(df.id) from datafile df, dvobject dv where df.filesize = 0 and df.id = dv.id and dv.owner_id in (select id from dataset where harvestingclient_id is not null);
The text was updated successfully, but these errors were encountered: