An unknown error occurred (HTTP 504) while setting up a new connection between Shopify API (source) and Google Sheets (destination) #40738
-
Hi everyone! I am new to Airbyte and is currently trying it out by fetching data from the Shopify API. My goal is to extract 1 month's worth of sales data from Shopify and save it on Google Sheets. I've followed all the instructions (OSS Quickstart and connector instructions) to the T and I'm encountering a rather unhelpful error message when it's fetching the data source schema. "We are fetching the schema of your data source. It then gives me, "An unknown error occurred. (HTTP 504)." The source and destination have both been tested on the UI and have passed. I'm self-hosting Airbyte on my mac, and the version I'm currently running is v0.63.1. I've also updated both source and destination to the latest versions but to no avail. Based on my search, it seems I'm hitting a timeout limit. Not sure if it's nginx since when I checked nginx on the docker container with commands: ...it says nginx is inactive. Is this the problem? I've also seen this Github issue where they mention about increasing timeout config on the nginx template for airbyte proxy, and here, where they mention that it can be changed on the env file. The problem is, I'm not sure how to do this exactly. Can someone point me where/in which directory I can find the .env file? Or what else I can do to fix this? Thanks so much in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
For older way of running Airbyte locally (deprecation announcement), you were executing I haven't worked with abctl yet, but for helm chart I have following values
and webapp ingress
Maybe it will be useful for your setup. In docs here, READ_TIMEOUT environment variable was mentioned as well |
Beta Was this translation helpful? Give feedback.
For older way of running Airbyte locally (deprecation announcement), you were executing
run-ab-platform.sh
script in root ofairbyte
repository.Script downloaded
.env
and few other configuration files, e.g. docker-compose.yaml, and started containers with docker compose.I haven't worked with abctl yet, but for helm chart I have following …