Joe Smith
10/22/2024, 8:02 PMuser
10/22/2024, 8:02 PM'Airbyte could not track the sync progress. Sync process exited without reporting status.'
, indicates that the sync process terminated unexpectedly without providing any status updates. This could be due to a variety of reasons such as a bug in the connector, a configuration error, or a system error. In Airbyte, syncs can fail for multiple reasons, and the connector can provide meaningful information about what to do next through AirbyteErrorTraceMessage
([source](https://docs.airbyte.com/understanding-airbyte/airbyte-protocol#airbyteerrortracemessage)). However, in your case, it seems like the sync process exited without providing this information. To diagnose the issue, you can check the sync logs for more details. If the sync process was cancelled, it might be due to handling large amounts of data or due to rate limits ([source](https://docs.airbyte.com/cloud/managing-airbyte-cloud/review-connection-status#connection-troubleshooting)). If the sync process failed, the error message should help diagnose the next steps. If you're still having trouble figuring out the issue, you might want to consider updating to the latest version of Airbyte, as there have been many platform improvements ([source](https://discuss.airbyte.io/t/2921)). If the issue persists, I recommend reaching out to the Airbyte community or support for further assistance.Joe Smith
10/23/2024, 8:29 AM2024-10-23 08:10:43 platform > Retry State: RetryManager(completeFailureBackoffPolicy=BackoffPolicy(minInterval=PT10S, maxInterval=PT30M, base=3), partialFailureBackoffPolicy=null, successiveCompleteFailureLimit=5, totalCompleteFailureLimit=5, successivePartialFailureLimit=1000, totalPartialFailureLimit=20, successiveCompleteFailures=0, totalCompleteFailures=0, successivePartialFailures=1, totalPartialFailures=1)
Backoff before next attempt: 0 seconds
user
10/23/2024, 8:30 AMRetryManager
is showing the current state of retries. The completeFailureBackoffPolicy
indicates the backoff policy for complete failures, with a minimum interval of 10 seconds and a maximum of 30 minutes. The successiveCompleteFailureLimit
and totalCompleteFailureLimit
are both set to 5, meaning that after 5 successive or total complete failures, the job will stop retrying. The successivePartialFailureLimit
and totalPartialFailureLimit
are set to 1000 and 20 respectively, which are the limits for partial failures. In your specific log message, successiveCompleteFailures
and totalCompleteFailures
are both 0, indicating that there have been no complete failures yet. successivePartialFailures
and totalPartialFailures
are both 1, indicating that there has been one partial failure. The Backoff before next attempt: 0 seconds
means that the next retry attempt will happen immediately without any delay. For more details, you can refer to the [Airbyte documentation on jobs](https://docs.airbyte.com/understanding-airbyte/jobs#sync-jobs).Joe Smith
10/23/2024, 8:31 AMuser
10/23/2024, 8:31 AMuser
10/23/2024, 8:31 AM