feat: Add universal HTTP/HTTPS proxy configuration support to Python CDK #595
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Universal HTTP/HTTPS Proxy Configuration Support for Airbyte Python CDK
Overview
This PR implements universal HTTP/HTTPS proxy configuration support for the Airbyte Python Connector Development Kit (CDK), enabling all connectors to work through corporate proxies and secure network environments.
Changes Made
Core Infrastructure
Integration Points
Key Features
Configuration Schema
Connectors can now include proxy configuration in their spec:
Implementation Details
Session Configuration
The proxy configuration is applied at the
requests.Session
level, ensuring all HTTP requests from a connector use the same proxy settings. This includes:Certificate Security
Environment Variable Support
When proxy configuration is not explicitly provided, the system automatically checks for standard environment variables:
HTTP_PROXY
/http_proxy
HTTPS_PROXY
/https_proxy
NO_PROXY
/no_proxy
Testing
Validation Results
All validation tests pass successfully:
Unit Tests
Comprehensive unit test suite covering:
Backward Compatibility
This implementation maintains 100% backward compatibility:
Usage Examples
Traditional Python Connectors
Declarative Connectors
Proxy configuration is automatically extracted from the connector config and applied to all HTTP requests.
Link to Devin run
https://app.devin.ai/sessions/3c0729f5a656487fab404910f7c84636
Requested by
AJ Steers ([email protected])