Moldova broke our data pipeline
avraam.dev
Moldova broke our data pipeline
1–10 of 61 posts
Re: Moldova broke our data pipeline
#2Re: Moldova broke our data pipeline
#3Re: Moldova broke our data pipeline
#4Re: Moldova broke our data pipeline
#5Re: Moldova broke our data pipeline
#6This very clearly seems like a bug either in their DMS script, or in the DMS job that they don't directly control, since CSV clearly allows for escaping commas (by just quoting them). Would love to see a bug report being submitted upstream as well as part of the "fix".
Re: Moldova broke our data pipeline
#7This very clearly seems like a bug either in their DMS script, or in the DMS job that they don't directly control, since CSV clearly allows for escaping commas (by just quoting them). Would love to see a bug report being submitted upstream as well as part of the "fix".
CSV quoting is dialect dependent. Honestly you should just never use CSV for anything if you can avoid it, it's inferior to TSV (or better yet JSON/JSONL) and has a tendency to appear like it's working but actually be hiding bugs like this one.
The "dialect dependent" part is usually about escaping double quotes, new lines and line continuations.
Not a portable format, but it is not too bad (for this use) either considering the country list is mostly static