user
09/05/2023, 9:38 PMpython sync_airbyte_connection = AirbyteConnectionTask( max_retries=3, retry_delay=timedelta(seconds=10) ) # Sync Airbyte GitHub data airbyte_github_sync = sync_airbyte_connection( airbyte_server_host="localhost", airbyte_server_port=8000, airbyte_api_version="v1", connection_id=airbyte_github_connection_id, ) # Sync dbt GitHub data dbt_github_sync = sync_airbyte_connection( connection_id=dbt_github_connection_id, airbyte_server_host="localhost", airbyte_server_port=8000, airbyte_api_version="v1", ) # Sync Prefect GitHub data prefect_github_sync = sync_airbyte_connection( airbyte_server_host="localhost", airbyte_server_port=8000, airbyte_api_version="v1", connection_id=prefect_github_connection_id, )
You can find more information about this in the [Prefect Airbyte Task documentation](https://docs.prefect.io/api/latest/tasks/airbyte.html#airbyteconnectiontask) and the [Airbyte documentation](https://docs.airbyte.com/operator-guides/using-prefect-task). However, please note that the examples provided are for a local instance of Airbyte. If you're using Airbyte Cloud, you'll need to replace "localhost" and "8000" with the appropriate host and port for your Airbyte Cloud instance.