sar
12/12/2022, 8:59 PMStreams
in the Airbyte UI :
• Destination Namespace
• Namespace Custom Format
• Destination Stream Prefix
Tried looking through the docs/code but wasn’t very clear to me.rex
12/12/2022, 9:52 PMben
12/12/2022, 10:17 PMAirbyteConnection(..., destination_namespace=AirbyteDestinationNamespace.SAME_AS_SOURCE)
valid values are AirbyteDestinationNamespace.SAME_AS_SOURCE
, AirbyteDestinationNamespace.DESTINATION_DEFAULT
, or a custom string (the same format that you would use in the Airbyte UI)AirbyteConnection
API docs don’t show the constructor’s documentation - will push a fix for that, but here is a link to those docs:
https://dagster-fqt9qd90e-elementl.vercel.app/_apidocs/libraries/dagster-airbyte#dagster_airbyte.AirbyteConnectionsar
12/13/2022, 2:03 PMAirbyteConnection
that a stream_config
needs to be specified as well? The reason I ask because if you’re setting up a db sync, you’d have to get a list of tables in that db and specify each one of those streams which would be quite tedious if you want to sync it all. Additionally, if you end up adding tables, you’d have to go back to your code and add those streams as well. Am I missing something?ben
12/16/2022, 3:25 PMsar
12/19/2022, 2:36 PM