-
Notifications
You must be signed in to change notification settings - Fork 90
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
Rate limit to build package #547
Comments
This looks like quilt build is failing to parse your csv. Build uses pandas read csv to read csv files into a DataFrame then serializes the DataFrame. You might need to pass some additional parameters to pandas, which you can do with a build file. Are you building from a buil file (e.g. build.yml)? Or, straight from a directory path? |
Yes. The build.yaml that I'm using is: $cat build.yaml
contents:
README:
file: README.md
rj_bu_2014_1:
file: rj_bu_2014_1.csv I can open the file with Pandas and the only non-default specification is that enconding is "ISO-8559-1". However, I create the another file with head of my csv:
Thus, I tried to build a package from this new file and the error don't occurred. Because of that I asked about rate limit. |
OK, temporary solution. Put There is probably a datetime or format/type change later in the full file that the Parquet serializer doesn't like. Later today I'll provide an upload link for the full file so we can see what's up. Thanks for reporting this. |
@AliferSales, you might want to try adding the encoding as a kwarg like this: If that doesn't work, you can use transform: id as @akarve suggested, to build a package with the raw csv file. You can then push that package with |
Solved! Really, the problem was with the pandas parsing. I didn't know that parser is made by pandas. I just needed to explicit the encoding (in the case, Thank @kevinemoore and @akarve. Quiltdata is a very good idea and looks very practical. I'm begining to use it and I'm very excited. :D |
I'm trying to build a 1.58 GB csv file, but I have the following result:
But I can't understand which is the problem and why the process was killed.
My file is:
I'm suspecting that it's because a rate limit to build, but it looks strange for me.
Can someone help me?
The text was updated successfully, but these errors were encountered: