Preserving Data Structure Between Source and Destination #35447
-
Hi. Is there a way to copy files AS IS from source to destination? Currently, when I try to copy a CSV file test.txt from source, that looks like:
it becomes like this in the destination.
Is there a way to simply transport the file from source to destination without changing it? (or at least, not JSONify the contents of the original file)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Currently, preserving the original CSV structure when copying files with Airbyte is not supported. Airbyte converts records to an |
Beta Was this translation helpful? Give feedback.
Currently, preserving the original CSV structure when copying files with Airbyte is not supported. Airbyte converts records to an
AirbyteMessage(id, emitted_at, data)
format, which is essential for syncing different sources to various destinations. This standardization may not align with use cases that require maintaining the original data structure during migration.