Euan Blackledge
10/25/2024, 7:50 AMuser
10/25/2024, 7:50 AMserver
pod being overloaded, preventing most of the deployment from operating normally. [Scaling Airbyte After Installation](https://docs.airbyte.com/enterprise-setup/scaling-airbyte#debug-logs) 2. JDBC Source Logging: There's an ongoing issue with SQL integrations (MySQL, Postgres, BigQuery, etc.) where many log entries are generated at the INFO level, which can result in thousands of lines for large schemas. A proposal has been made to change these log levels from INFO to DEBUG to reduce log volume. [Github Issue: Sources JDBC: Change logging from INFO to DEBUG](https://github.com/airbytehq/airbyte/issues/24983) 3. API Exceptions: The error message you're seeing (ApiException: getWorkspaceByConnectionId call failed with: 404) suggests that there might be an issue with the API calls. This could be related to a known issue where Airbyte doesn't respond via UI or API, possibly due to rate limiting or resource exhaustion. [Github Issue: Airbyte not responding via UI or API](https://github.com/airbytehq/airbyte/issues/46554) To address your specific situation: 1. Ensure that DEBUG logs are turned off in your production environment. 2. Check if you're using any JDBC sources, as these might be contributing to the log volume. 3. Monitor your system resources and API call rates to ensure you're not hitting any limits. If the issue persists after implementing these changes, you may need to investigate further or consider reaching out to Airbyte support for more specific assistance. The fact that your UI and ingestions are working fine suggests that this might be primarily a logging issue rather than a functional problem with Airbyte itself.Euan Blackledge
10/25/2024, 8:08 AMuser
10/25/2024, 8:08 AMuser
10/25/2024, 8:08 AMreplication_method
configuration parameter was changed from string
to object
in certain versions. You might need to update your configurations accordingly. 3. If the issue persists, consider reaching out to the Airbyte community or support for more specific assistance. You can post your question on the [Airbyte Discussion Forum](https://discuss.airbyte.io/) or check the [Airbyte Documentation](https://docs.airbyte.com/) for more information. Remember, it's always important to keep your system and connectors up-to-date and to follow the recommended practices for configuring and managing your data sync processes in Airbyte.