You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The extraction client has built-in handling of byte order markers for CSV files in UTF-8 and UTF-16 encodings. When using CSV files in other encodings, if you experience unexpected errors be sure to check for a byte order marker at the beginning of the file. One way to check is to run the following command from the command line:
171
+
172
+
```bash
173
+
cat -v file.csv
174
+
```
175
+
176
+
If there is an unexpected symbol at the beginning of the file, then there is a byte order marker that needs to be removed.
177
+
164
178
## Terminology and Architecture
165
179
166
180
This framework consists of three key components: Extractors, Modules and Templates. Below is, in order:
0 commit comments