Open mvitale-kensu opened 6 months ago
Thank you @mvitale-kensu for reporting this issue. Instead of the solution that you proposed, did another solution in the SO post not work for you:
import sys
import csv
csv.field_size_limit(sys.maxsize)
...
In any case, we do need to include a fix for this issue. Just curious if you tried the above solution?
Hey @crupakheti, Yep, with the solution proposed in my first message the issue was fixed for us.
Hello guys,
In our case the resume step fails because the
mwaa_import_data
dag fails while importingvariable.csv
This is the error:Just FYI I've fixed it by adding these few lines of code to
mwaa_import_data.py
:Coming from this: https://stackoverflow.com/questions/15063936/csv-error-field-larger-than-field-limit-131072
I am not sure if this is the correct way to manage this, but for what I've seen it seems to be working fine for us.
We are on airflow
2.7.2
and I am using the latest code of this project available inmain
.