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
Tech4Dev is upgrading all Dalgo clients to Airbyte's Destinations v2 feature. As part of this upgrade, all ingested data will be extracted from _airbyte_data according to the detected schema.
The dbt code needs to be updated to be able to read from these new tables; this is the motivation behind this GitHub issue.
For KoboToolbox, the column _airbyte_data current holds JSON having the schema {data, _id, endtime, end, _submission_time}, and we use dbt to extract these into separate SQL columns.
After the migration to Destinations v2, Airbyte will do this first step of flattening. Our dbt code will therefore need to read from these columns rather than from _airbyte_data
The column _airbyte_ab_id has been replaced by _airbyte_raw_id, and the column _airbyte_emitted_at will become _airbyte_extracted_at. These two columns will appear in the extracted tables along with the columns from the source schema
Connector normalization has already been deprecated as part of this upgrade, since this step is being done as part of the ingest stage.
The text was updated successfully, but these errors were encountered:
Tech4Dev is upgrading all Dalgo clients to Airbyte's Destinations v2 feature. As part of this upgrade, all ingested data will be extracted from
_airbyte_data
according to the detected schema.The dbt code needs to be updated to be able to read from these new tables; this is the motivation behind this GitHub issue.
For KoboToolbox, the column
_airbyte_data
current holds JSON having the schema{data, _id, endtime, end, _submission_time}
, and we use dbt to extract these into separate SQL columns.After the migration to Destinations v2, Airbyte will do this first step of flattening. Our dbt code will therefore need to read from these columns rather than from
_airbyte_data
The column
_airbyte_ab_id
has been replaced by_airbyte_raw_id
, and the column_airbyte_emitted_at
will become_airbyte_extracted_at
. These two columns will appear in the extracted tables along with the columns from the source schemaConnector normalization has already been deprecated as part of this upgrade, since this step is being done as part of the ingest stage.
The text was updated successfully, but these errors were encountered: