Ishan Anilbhai Koradiya
02/06/2025, 9:22 AMkapa.ai
02/06/2025, 9:22 AMMICRONAUT_SERVER_MAX_REQUEST_SIZE
environment variable. For example: yaml environment: - MICRONAUT_SERVER_MAX_REQUEST_SIZE=104857600
This increases the limit to about 100 MB. 4. For Kubernetes deployments, you may need to modify your values.yaml file: yaml global: env_vars: MICRONAUT_SERVER_MAX_REQUEST_SIZE: "104857600"
5. In some cases, increasing the nginx client_max_body_size
setting may also be necessary. 6. For very large schemas, you might need to consider splitting your source into multiple connections with fewer tables each. It's worth noting that the Airbyte team is aware of this issue and is working on improvements for handling large catalogs, but as of the latest information available in the knowledge sources, a comprehensive fix has not yet been implemented. For more detailed information and discussion on this issue, you can refer to these GitHub issues: [Large schema fetching failure](https://github.com/airbytehq/airbyte/issues/4564) [Source Oracle - Can't save connection, error "Request Entity Too Large"](https://github.com/airbytehq/airbyte/issues/22631) If these solutions don't resolve your issue, you may need to reach out to Airbyte support for further assistance, as the problem could be specific to your particular setup or schema size.Ishan Anilbhai Koradiya
02/06/2025, 9:31 AMkapa.ai
02/06/2025, 9:31 AMkapa.ai
02/06/2025, 9:31 AM