-
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
base: main
Are you sure you want to change the base?
Conversation
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
🤖 Devin AI EngineerOriginal prompt from Aaron:
I'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
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.
For the binary format, you used pickle. I was expecting this to be a format that is natively readable by another tool. Please check Airbyte repo's live-tests implementation for the correct format to use here. I don't recall specifically, but you can take this opportunity to check there and migrate similarly here if possible.
Also, they used something like "hal" or similar for their JSON format. I don't know what that is, so please explain it as well (but don't migrate to it yet).
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
airbyte/_executors/declarative.py
Outdated
) -> Iterator[str]: | ||
"""Execute the declarative source.""" | ||
_ = stdin # Not used | ||
_ = stdin, env # Not used |
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.
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
Devin is archived and cannot be woken up. Please unarchive Devin if you want to continue using it. |
…mentation (#650) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Aaron <AJ> Steers <[email protected]>
def find_free_port() -> int: | ||
"""Find a free port to use for the proxy.""" | ||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: | ||
s.bind(("", 0)) |
Check warning
Code scanning / CodeQL
Binding a socket to all network interfaces Medium
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI about 9 hours ago
To fix the problem, we need to bind the socket to a specific interface instead of all interfaces. This can be achieved by using a dedicated interface, such as localhost
, which limits the socket to accept connections only from the local machine. This change will enhance the security of the application by preventing external connections to the socket.
-
Copy modified line R32
@@ -31,3 +31,3 @@ | ||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: | ||
s.bind(("", 0)) | ||
s.bind(("localhost", 0)) | ||
return s.getsockname()[1] |
This PR implements HTTP caching for connectors using mitmproxy. It supports four cache modes, separate read/write directories, and configurable serialization formats including mitmproxy's native format for better interoperability.
Link to Devin run: https://app.devin.ai/sessions/9bbcc89c5dc047cabfe064370d8ca798
Requested by: Aaron ("AJ") Steers ([email protected])