:wave: we're seeing an increase in `409 Client Err...
# airbyte-api
h
👋 we're seeing an increase in
409 Client Error: Conflict for url: <https://api.airbyte.com/v1/jobs>
when calling the jobs endpoint to start a sync. Is there anything we can do to avoid running into the 409? We retry ~5 times with 1-5 min delays. Thanks
It looks like the sync was actually kicked off and succeeded in the Airbyte UI.. For some reason we got a 40x back on the first call to
/jobs
and because the sync did kick off we get 409 on subsequent tries?
t
Hi Henri, you’re correct, 409's usually means that there is already a sync in progress and that the response body usually contains something like:
Copy code
{
  "type": "<https://reference.airbyte.com/reference/errors#try-again-later>",
  "title": "try-again-later",
  "status": 409,
  "detail": "A sync is already running for: 7b4b17fe-7fe6-4349-8f66-5c3d1811115b"
}
We’ll look into why the first request might have returned an error code even though the request actually worked.
h
Perfect! Thanks for confirming that @Terence Cho (Airbyte), I'll add some logic on our side to account for that.
u
@Henri created a Task INFR-949 Airbyte <> Dagster: Account for 409 sync in progress
j
Hi @Terence Cho (Airbyte) , Would you have any update on that? I'm experiencing the same issue with airbyte jobs triggered by Dagster. All my Airbyte jobs are displayed as failed even though it was correctly triggered.