Aviad Deri
11/05/2025, 12:23 PMkapa.ai
11/05/2025, 12:23 PMjava.io.IOException: Broken pipe) appears in several reported issues with similar patterns to yours: 1. Large table syncs are particularly affected - Multiple users report issues when syncing tables with millions of records. One case mentions [missing rows when syncing large MySQL tables](https://github.com/airbytehq/airbyte/issues/53614), where users syncing 236+ million records experienced similar problems. 2. abctl installation concerns - In the [MySQL to Snowflake sync issue](https://github.com/airbytehq/airbyte/issues/53614), a user specifically noted: "After some testing, I believe the issue may be in the abctl setup. It seems like abctl is more suitable for prototyping rather than handling large scale data transfers. I'd recommend trying the Docker or Kubernetes (kubectl) installation instead." 3. The error pattern matches yours - The stacktrace shows the same io.airbyte.workers.internal.exception.DestinationException: Destination process message delivery failed followed by Caused by: java.io.IOException: Broken pipe in multiple issues including [source-snowflake](https://github.com/airbytehq/airbyte/issues/56456) and [Typesense destination](https://github.com/airbytehq/airbyte/issues/50396). ## Potential Solutions Based on the knowledge sources: 1. Consider alternative deployment methods - Users have reported better success with Docker or Kubernetes installations instead of abctl for large-scale data transfers. 2. Resource allocation - While you've already increased resources, one user in the [Temporal Scheduler issue](https://discuss.airbyte.io/t/1293) found that adjusting MAX_SYNC_WORKERS and MAX_CHECK_WORKERS to equal values helped with sync stability. 3. Split the sync - In a [MySQL to BigQuery case](https://discuss.airbyte.io/t/2656), splitting large table syncs into multiple smaller connections was suggested as a workaround. Unfortunately, the knowledge sources don't contain specific information about a fix for this issue in v2 with abctl installations. You may want to consider downgrading temporarily, as one user successfully [downgraded to 1.6.4](https://github.com/airbytehq/airbyte/issues/62463) using the abctl --chart-version flag to resolve similar networking issues.Henry Mattingly
11/05/2025, 10:13 PMAviad Deri
11/06/2025, 6:36 AMHenry Mattingly
11/06/2025, 5:53 PMAviad Deri
11/06/2025, 6:00 PM