-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement HTTP caching with mitmproxy's native format #646
Draft
devin-ai-integration
wants to merge
18
commits into
main
Choose a base branch
from
devin/1743363370-http-caching
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,210
−213
Draft
Changes from 5 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
737c0c0
feat: implement HTTP caching for connectors
devin-ai-integration[bot] 634f4de
fix: fix import ordering and type ignore issues
devin-ai-integration[bot] 5fcfb92
chore: update poetry.lock
devin-ai-integration[bot] 3a35bb1
fix: fix type annotation issues and unreachable code
devin-ai-integration[bot] 61b4622
style: fix formatting and linting issues
devin-ai-integration[bot] e25a223
refactor: replace pickle with mitmproxy's native format for HTTP caching
devin-ai-integration[bot] e8696e4
fix: improve file path handling for Windows compatibility
devin-ai-integration[bot] b9fa560
docs: fix HAR format name in README
devin-ai-integration[bot] 88a8895
chore: add `poe install` shortcut (side quest)
aaronsteers 6755085
add cached example script
aaronsteers 1e94da3
fix: resolve asyncio and serialization issues in HTTP caching example
devin-ai-integration[bot] 82c4c83
(stacked pr): improve asyncio event loop issues in HTTP caching imple…
devin-ai-integration[bot] 8e0cbba
refactor http_cache as property of executor
aaronsteers 46cd360
mypy fixes
aaronsteers 598af6e
working proxy redirect in docker container
aaronsteers a7b925c
refactor proxy implementation
aaronsteers 9b78812
add cursor rules file
aaronsteers a343634
most functionality working 🚀 (except consolidation)
aaronsteers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
"""HTTP caching module for Airbyte connectors.""" | ||
|
||
from __future__ import annotations | ||
|
||
from airbyte.http_caching.cache import AirbyteConnectorCache, HttpCacheMode | ||
from airbyte.http_caching.serialization import SerializationFormat | ||
|
||
|
||
__all__ = ["AirbyteConnectorCache", "HttpCacheMode", "SerializationFormat"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
"""HTTP caching for Airbyte connectors.""" | ||
|
||
from __future__ import annotations | ||
|
||
import threading | ||
from pathlib import Path | ||
from typing import cast | ||
|
||
from mitmproxy import options | ||
from mitmproxy.tools.dump import DumpMaster | ||
|
||
from airbyte.constants import DEFAULT_HTTP_CACHE_DIR, DEFAULT_HTTP_CACHE_READ_DIR | ||
from airbyte.http_caching.proxy import HttpCacheMode, HttpCachingAddon | ||
from airbyte.http_caching.serialization import SerializationFormat | ||
|
||
|
||
class AirbyteConnectorCache: | ||
"""Cache for Airbyte connector HTTP requests and responses. | ||
|
||
This class manages an HTTP proxy that intercepts requests from connectors and either | ||
serves them from the cache or forwards them to the server based on the cache mode. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
cache_dir: str | Path | None = None, | ||
read_dir: str | Path | None = None, | ||
mode: str | HttpCacheMode = HttpCacheMode.READ_WRITE, | ||
serialization_format: str | SerializationFormat = SerializationFormat.BINARY, | ||
) -> None: | ||
"""Initialize the cache. | ||
|
||
Args: | ||
cache_dir: The directory where cache files are stored for writing. If not provided, | ||
the default directory will be used. | ||
read_dir: Optional separate directory for reading cached responses. If not provided, | ||
cache_dir will be used for both reading and writing. | ||
mode: The cache mode to use. Can be one of 'read_only', 'write_only', | ||
'read_write', or 'read_only_fail_on_miss'. | ||
serialization_format: The format to use for serializing cached data. Can be | ||
'json' or 'binary'. | ||
""" | ||
self.cache_dir = Path(cache_dir) if cache_dir else DEFAULT_HTTP_CACHE_DIR | ||
|
||
if read_dir: | ||
self.read_dir = Path(read_dir) | ||
elif DEFAULT_HTTP_CACHE_READ_DIR: | ||
self.read_dir = DEFAULT_HTTP_CACHE_READ_DIR | ||
else: | ||
self.read_dir = self.cache_dir | ||
|
||
self.mode = HttpCacheMode(mode) if isinstance(mode, str) else mode | ||
|
||
self.serialization_format = ( | ||
SerializationFormat(serialization_format) | ||
if isinstance(serialization_format, str) | ||
else serialization_format | ||
) | ||
|
||
self._proxy_port: int | None = None | ||
self._proxy_thread: threading.Thread | None = None | ||
self._proxy: DumpMaster | None = None | ||
self._addon: HttpCachingAddon | None = None | ||
|
||
def start(self) -> int: | ||
"""Start the HTTP proxy. | ||
|
||
Returns: | ||
The port number the proxy is listening on. | ||
""" | ||
if self._proxy_port is not None: | ||
return self._proxy_port | ||
|
||
port = 0 | ||
|
||
opts = options.Options( | ||
listen_host="127.0.0.1", | ||
listen_port=port, | ||
ssl_insecure=True, # Allow self-signed certificates | ||
confdir=str(self.cache_dir), # Store certificates in the cache directory | ||
) | ||
|
||
addon = HttpCachingAddon( | ||
cache_dir=self.cache_dir, | ||
read_dir=self.read_dir, | ||
mode=self.mode, | ||
serialization_format=self.serialization_format, | ||
) | ||
self._addon = addon | ||
|
||
proxy = DumpMaster(opts) | ||
self._proxy = proxy | ||
proxy.addons.add(addon) | ||
|
||
thread = threading.Thread(target=proxy.run, daemon=True) | ||
self._proxy_thread = thread | ||
thread.start() | ||
|
||
port_number = cast("int", proxy.server.address[1]) # type: ignore[attr-defined] | ||
self._proxy_port = port_number | ||
|
||
return port_number | ||
|
||
def stop(self) -> None: | ||
"""Stop the HTTP proxy.""" | ||
if self._proxy is not None: | ||
self._proxy.shutdown() | ||
self._proxy_thread = None | ||
self._proxy = None | ||
self._addon = None | ||
self._proxy_port = None |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: We may need to (later, not here) implement a cache option for declarative execution. This runs through our same Python process, so we may either need to patch the
requests
library or have another implementation. Lmk if you have thoughts, but don't implement.