Neeraj N
10/31/2025, 6:41 AMkapa.ai
10/31/2025, 6:41 AMio.airbyte.cdk.TransientErrorException: Input was fully read, but some streams did not receive a terminal stream status message. If the destination did not encounter other errors, this likely indicates an error in the source or platform. Streams without a status message: [sources, sample_data, company, api_keys, ingestion_logs, trino_ingestion_logs, source_logs, sync_logs, streams, login_attempts, users, objs, query_logs, refs] indicates that Airbyte's destination component finished reading all input, but did not receive a "terminal stream status message" for some streams. This typically means that the source connector failed to properly complete the sync for those streams, possibly due to an error or crash in the source process. The log line: Source process exited with non-zero exit code 1 confirms that the source connector process exited with an error, which is a common root cause for this type of issue. This pattern is seen in several Airbyte issues and discussions, where the destination reports missing terminal stream status messages when the source fails or crashes before completing all streams. The error is not specific to a single connector or destination, but rather is a general indication that the sync was interrupted or incomplete on the source side, and the destination could not finalize the state for the affected streams. This can be caused by: - Source connector bugs or unhandled exceptions - Resource exhaustion (e.g., out-of-memory, thread limits) - Platform or infrastructure issues - Misconfiguration or unsupported features in the source To resolve this, you should: 1. Review the source connector logs for more detailed error messages or stack traces that occurred before the process exited. 2. Check for known issues with the specific source connector you are using. 3. Ensure your environment has sufficient resources and is properly configured. 4. If the problem persists, consider opening a GitHub issue with detailed logs for further investigation. This behavior and error message are documented in several Airbyte issues, such as [source-hubspot mid-sync failures](https://github.com/airbytehq/airbyte/issues/62467), [MS SQL source connector after CDC cleanup](https://github.com/airbytehq/airbyte/issues/68150), and [source-clickhouse SQLFeatureNotSupportedException](https://github.com/airbytehq/airbyte/issues/61419), all of which describe similar symptoms and root causes.