description |
---|
Technical support |
Example of the issue:
To load configuration parameters, Airbyte must first docker pull
the connector's image, which may be many hundreds of megabytes. Under poor connectivity conditions, the request to pull the image may take a very long time or time out. More context on this issue can be found here. If your internet speed is less than 30mbps down or are running bandwidth-consuming workloads concurrently with Airbyte, you may encounter this issue. Run a speed test to verify your internet speed.
One workaround is to manually pull the latest version of every connector you'll use then resetting Airbyte. Note that this will remove any configured connections, sources, or destinations you currently have in Airbyte. To do this:
- Decide which connectors you'd like to use. For this example let's say you want the Postgres source and the Snowflake destination.
- Find the Docker image name of those connectors. Look here for sources and here for destinations. For each of the connectors you'd like to use, copy the value of the
dockerRepository
anddockerImageTag
fields. For example, for the Postgres source this would beairbyte/source-postgres
and e.g0.1.6
. - For each of the connectors you'd like to use, from your shell run
docker pull <repository>:<tag>
, replacing<repository>
and<tag>
with the values copied from the step above e.g:docker pull airbyte/source-postgres:0.1.6
. - Once you've finished downloading all the images, from the Airbyte repository root run
docker-compose down -v
followed bydocker-compose up
. - The issue should be resolved.
If the above workaround does not fix your problem, please report it here or in our Slack.