Error: Timeout #143
-
Software/command: cfde-submit run Error text: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Timeout errors usually indicate that a table that otherwise passed validation is subtlety malformed. Possible solutions: 1. Fix file encodings Our database takes flat text files, and expects ASCII type encodings. Especially if you have built parts of your table by scraping webservices, files or portions of your files, may use other encodings. You can check your encodings by running:
in the directory that holds your submission files. You should get back something like this:
ASCII or UTF encodings are fine. However ISO type encodings like the one for 2. Key errors Occasionally, mismatches in keys between tables can cause the system to stall out but not produce error information. To check for this, you can install the same validator we use frictionless validator, and run it locally.
3. File transfer not initiated Currently if a user has Globus Connect installed, the 4. File size limitations If you can't find any problems with your datapackage but are still getting timeout errors, it's possible that the size or complexity of your submission is exceeding our processing limits. If you suspect this is the case please email the helpdesk for individual support. |
Beta Was this translation helpful? Give feedback.
Timeout errors usually indicate that a table that otherwise passed validation is subtlety malformed.
Possible solutions:
1. Fix file encodings
Our database takes flat text files, and expects ASCII type encodings. Especially if you have built parts of your table by scraping webservices, files or portions of your files, may use other encodings. You can check your encodings by running:
file *
in the directory that holds your submission files. You should get back something like this: