Steve,
I’m pretty sure a split zip file (a single zip archive sent as multiple files) would cause an issue as Dataverse is trying to unzip each file independently. Could that be the issue? There could be problems with ingesting a large tabular file, but I don’t think that results in a 400 error – just the original file being saved without a .tab version.
-- Jim
--
You received this message because you are subscribed to the Google Groups "Dataverse Users Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
dataverse-commu...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/dataverse-community/fb235273-19d1-499e-8a44-b170c1cc2a29o%40googlegroups.com.
Steve,
For an immediate error, I can’t think of too many possibilities. One would be if your file has gone over the :MaxFileUploadSizeInBytes setting limit. If that’s not it - I see from the trace below that pyDataverse is failing to parse the response as json, so seeing the raw message from Dataverse might help, i.e. by printing before that failure on line 1035 or just trying the curl command directly (see http://guides.dataverse.org/en/latest/api/native-api.html#id62).
To view this discussion on the web visit https://groups.google.com/d/msgid/dataverse-community/879c59aa-8514-43aa-9249-ca78abbf4c77n%40googlegroups.com.
Yep – not very informative J Could it be something in front of Dataverse with a size limit? Apache servers have a LimitRequestBody directive and nginx/load balancers could have a limit as well. Doing a curl with the –vv option would show you the ‘server:’ – if that’s not your Apache server it would tell you if the request is being stopped by something else (e.g. I’ve seen awslb as the :server for errors where an aws load balancer was
stopping the request). If it is apache/httpd, there might be a clue in the apache log rather than the Dataverse one.
To view this discussion on the web visit https://groups.google.com/d/msgid/dataverse-community/71223e12-33b0-4273-8aa3-e5d07593859dn%40googlegroups.com.