The id field returned from bin/get is an array. The id field returned from airflow is a string. This didn't cause issue with csv data because of the way that data gets parsed in traject, but extract_json expects fails e.g. extract_json('.id') will not work on an array.
The id field returned from bin/get is an array. The id field returned from airflow is a string. This didn't cause issue with csv data because of the way that data gets parsed in traject, but
extract_json
expects fails e.g.extract_json('.id')
will not work on an array.